Callbacks
onAuthFlowOpen
Summary
This callback will be called after the auth flow modal is opened.
Usage
<DynamicContextProvider
settings={{
eventsCallbacks: {
onAuthFlowOpen: () => {
console.log('onAuthFlowOpen was called');
}
}
}}
>
{/* ... rest of your app ... */}
</DynamicContextProvider>
Callback Argument Value
None
Was this page helpful?