diff --git a/www/app/(app)/transcripts/new/page.tsx b/www/app/(app)/transcripts/new/page.tsx index 07a3be93..2571edbf 100644 --- a/www/app/(app)/transcripts/new/page.tsx +++ b/www/app/(app)/transcripts/new/page.tsx @@ -44,7 +44,7 @@ import { } from "@chakra-ui/react"; const TranscriptCreate = () => { - const isClient = typeof window === 'undefined'; + const isClient = typeof window !== 'undefined'; const router = useRouter(); const { isLoading, isAuthenticated } = useSessionStatus(); const requireLogin = featureEnabled("requireLogin");