Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/auth/src/core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ export function onIdTokenChanged(
*
* @param auth - The {@link Auth} instance.
* @param callback - callback triggered before new user value is set.
* If this throws, it will block the user from being set.
* @param onAbort - callback triggered if a later before state changed
* If this throws, it blocks the user from being set.
* @param onAbort - callback triggered if a later `beforeAuthStateChanged()`
* callback throws, allowing you to undo any side effects.
*/
export function beforeAuthStateChanged(
Expand Down
4 changes: 2 additions & 2 deletions packages/auth/src/model/public_types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ export interface Auth {
* sets a new user.
*
* @param callback - callback triggered before new user value is set.
* If this throws, it will block the user from being set.
* @param onAbort - callback triggered if a later before state changed
* If this throws, it blocks the user from being set.
* @param onAbort - callback triggered if a later `beforeAuthStateChanged()`
* callback throws, allowing you to undo any side effects.
*/
beforeAuthStateChanged(
Expand Down