From a8d3f5fcf52476accea2d1bc200854e90311172b Mon Sep 17 00:00:00 2001 From: Igor Loskutov Date: Thu, 19 Jun 2025 12:46:07 -0400 Subject: [PATCH] Update www/app/(app)/transcripts/new/page.tsx Co-authored-by: pr-agent-monadical[bot] <198624643+pr-agent-monadical[bot]@users.noreply.github.com> --- www/app/(app)/transcripts/new/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");