Overview
useUser is the primary hook for interacting with the currently authenticated user’s profile. It provides the user’s full data (as an AuthUser), loading and error states, and an updateUser action.
Updates are applied optimistically — the UI reflects changes immediately, and reverts automatically if the server request fails.
Usage Example
Uploading an Avatar
Return Values
AuthUser | null
The authenticated user’s full profile. Returns
null while loading or when no user is authenticated. See User data model.boolean
true while the user’s profile is being fetched for the first time.boolean
true while an updateUser call is in progress.string | null
Error message if an
updateUser call fails. null when there is no error.(update: UpdateUserParams) => Promise<AuthUser>
Updates the authenticated user’s profile. Applies optimistic updates immediately and reverts on failure.
() => void
Clears the current error state.
Optimistic Updates
updateUser applies changes to local state before the server responds. This makes the UI feel instant. Fields that cannot be optimistically applied (file uploads, location) wait for the server response.
If the server returns an error, the hook automatically reverts the user state to its pre-update value.
File uploads (avatar as a
File/Blob, and banner) are not applied optimistically because the final URL is unknown until the upload completes.
