(value: string | null)
| 53 | if (isChecking) { |
| 54 | return ( |
| 55 | <div className="flex min-h-screen items-center justify-center"> |
| 56 | <div className="flex items-center gap-2 text-sm text-muted-foreground"> |
| 57 | <ShieldCheck className="h-4 w-4 animate-pulse text-primary" /> |
| 58 | Auth Inbox |
| 59 | </div> |
| 60 | </div> |
| 61 | ); |
| 62 | } |
| 63 | |
| 64 | if (!user) { |
| 65 | return ( |
| 66 | <> |
| 67 | <Toaster theme="dark" position="bottom-right" closeButton /> |