majak_94518
03/15/2024, 9:51 AMgetRedirectionURL: async (context, userContext) => {
if (context.action === 'SUCCESS') {
if (context.redirectToPath !== undefined) {
// we are navigating back to where the user was before they authenticated
return context.redirectToPath;
}
return '/';
}
return undefined;
}
value for context.redirectToPath is always empty? It doesn't look for the redirectToPath?
Thanks