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 = () => {
instance
const handleSignInRedirect = async () => {
await instance
.loginRedirect({
...loginRequest,
prompt: 'create',
// prompt: 'create',
})
.catch((error) => console.log(error));
};