From 2133253836de428e58b4ba1c9b7e863485b6b870 Mon Sep 17 00:00:00 2001 From: Michael Hunteman Date: Sat, 21 Sep 2024 08:00:39 -0700 Subject: Use snackbar globally --- client/src/models.ts | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'client/src/models.ts') diff --git a/client/src/models.ts b/client/src/models.ts index 38b48ad..6840a46 100644 --- a/client/src/models.ts +++ b/client/src/models.ts @@ -1,6 +1,3 @@ -import type { SerializedError } from '@reduxjs/toolkit'; -import type { FetchBaseQueryError } from '@reduxjs/toolkit/query'; - export interface Guest { id?: number; firstName: string; @@ -31,10 +28,3 @@ export interface AdminLogin { guests: Guest[]; token: string; } - -export interface StatusProps { - isError?: boolean; - error: FetchBaseQueryError | SerializedError | undefined; - setOpen: (open: boolean) => void; - type: string; -} -- cgit v1.2.3