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 6bea429 commit 0897842Copy full SHA for 0897842
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