We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c52051 commit 63e1d16Copy full SHA for 63e1d16
1 file changed
apps/website/app/(home)/auth/token/page.tsx
@@ -1,8 +1,11 @@
1
import { LoginWithToken } from "~/components/auth/LoginWithToken";
2
+import { Suspense } from "react";
3
4
const Page = () => (
5
<div className="flex min-h-svh w-full items-center justify-center p-6 md:p-10">
- <LoginWithToken />
6
+ <Suspense fallback={<>Logging in</>}>
7
+ <LoginWithToken />
8
+ </Suspense>
9
</div>
10
);
11
0 commit comments