summaryrefslogtreecommitdiff
path: root/client/src/slices/auth/guestSlice.ts
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-08-30 14:45:50 -0700
committerMichael Hunteman <michael@huntm.net>2024-08-30 14:45:50 -0700
commit340193f1d52e1b68fe950974d1003b9330e06fe3 (patch)
tree68dc6ddc99a0bffaf47dfa7f7bf591103b0d36d2 /client/src/slices/auth/guestSlice.ts
parent1d2ffb8a2b6af752b6fd091e8e59682625c2b495 (diff)
Update material react table to have party guests
Diffstat (limited to 'client/src/slices/auth/guestSlice.ts')
-rw-r--r--client/src/slices/auth/guestSlice.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/slices/auth/guestSlice.ts b/client/src/slices/auth/guestSlice.ts
index 701148e..fb4afaf 100644
--- a/client/src/slices/auth/guestSlice.ts
+++ b/client/src/slices/auth/guestSlice.ts
@@ -1,7 +1,7 @@
import { createSlice } from '@reduxjs/toolkit';
import type { PayloadAction } from '@reduxjs/toolkit';
import type { RootState } from '../../store';
-import type { Guest } from '../api/guestSlice';
+import type { Guest } from '../../models';
type GuestAuth = {
guest?: Guest;