From ed21a9246c4c0d4b39079e9f338807281afe2bd2 Mon Sep 17 00:00:00 2001 From: Rainnny7 Date: Wed, 18 Sep 2024 23:36:06 -0400 Subject: [PATCH] fix types - make snowflakes a string --- src/app/(pages)/dashboard/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(pages)/dashboard/page.tsx b/src/app/(pages)/dashboard/page.tsx index dedd503..27cff82 100644 --- a/src/app/(pages)/dashboard/page.tsx +++ b/src/app/(pages)/dashboard/page.tsx @@ -11,7 +11,7 @@ const DashboardPage = (): ReactElement => { const user: User | undefined = useUserContext( (state: UserState) => state.user ); - const selectedOrganization: bigint | undefined = useOrganizationContext( + const selectedOrganization: string | undefined = useOrganizationContext( (state: OrganizationState) => state.selected ); return (