fix clerk auth sign in with provider

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-05-19 22:41:45 +02:00
parent 43f9cf08b5
commit 438b70e930
4 changed files with 84 additions and 14 deletions

View File

@@ -3,12 +3,7 @@ import { AuthenticateWithRedirectCallback } from '@clerk/nextjs';
export const dynamic = 'force-dynamic';
const SSOCallback = () => {
return (
<AuthenticateWithRedirectCallback
signInUrl="/login"
signUpUrl="/register"
/>
);
return <AuthenticateWithRedirectCallback />;
};
export default SSOCallback;