fix build errs
All checks were successful
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Successful in 58s

This commit is contained in:
Braydon 2024-09-18 23:38:32 -04:00
parent ed21a9246c
commit f649b7b15c
2 changed files with 6 additions and 1 deletions

@ -7,6 +7,11 @@ import { useUserContext } from "@/app/provider/user-provider";
import { useOrganizationContext } from "@/app/provider/organization-provider";
import { OrganizationState } from "@/app/store/organization-store";
/**
* The dashboard home page.
*
* @return the page jsx
*/
const DashboardPage = (): ReactElement => {
const user: User | undefined = useUserContext(
(state: UserState) => state.user

@ -15,5 +15,5 @@ export type Session = {
/**
* The unix time this session expires.
*/
expires: bigint;
expires: number;
};