fix types - make snowflakes a string
Some checks failed
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Failing after 20s

This commit is contained in:
Braydon 2024-09-18 23:36:06 -04:00
parent 7301ff7ac3
commit ed21a9246c

@ -11,7 +11,7 @@ const DashboardPage = (): ReactElement => {
const user: User | undefined = useUserContext( const user: User | undefined = useUserContext(
(state: UserState) => state.user (state: UserState) => state.user
); );
const selectedOrganization: bigint | undefined = useOrganizationContext( const selectedOrganization: string | undefined = useOrganizationContext(
(state: OrganizationState) => state.selected (state: OrganizationState) => state.selected
); );
return ( return (