๐ Stablecoin Accounts are live! Learn more
Overview & Setup
Providers & Connectors
UI Components
Hooks
- Hooks Introduction
- Core Hooks
- Login & User Management
- Wallets
- Embedded Wallets
- Funding
Events
Objects & Utilities
- React Objects Introduction
- Objects
- Utilities
Event Callbacks
onUserProfileUpdate
Summary
This callback will be called when user profile information is updated. To learn more about information capture, see the here.
Usage
Copy
Ask AI
<DynamicContextProvider
settings={{
events: {
onUserProfileUpdate: (user) => {
console.log('onUserProfileUpdate was called', user);
}
}
}}
>
{/* ... rest of your app ... */}
</DynamicContextProvider>
Callback Argument Value
Copy
Ask AI
user: UserProfile
Was this page helpful?
On this page
Assistant
Responses are generated using AI and may contain mistakes.