Refactoring

This commit is contained in:
2025-01-19 16:00:04 -06:00
parent b85d0a6b22
commit 0787d69367

View File

@@ -35,11 +35,11 @@ const SiteNav: React.FC<unknown> = () => {
} }
]; ];
const handleSignInRedirect = () => { const handleSignInRedirect = async () => {
instance await instance
.loginRedirect({ .loginRedirect({
...loginRequest, ...loginRequest,
prompt: 'create', // prompt: 'create',
}) })
.catch((error) => console.log(error)); .catch((error) => console.log(error));
}; };