diff options
author | Michael Hunteman <michael@huntm.net> | 2024-09-02 10:55:57 -0700 |
---|---|---|
committer | Michael Hunteman <michael@huntm.net> | 2024-09-02 10:55:57 -0700 |
commit | 4d920cc13f1a3fa0d3551e78a5a8f0ff8b05046e (patch) | |
tree | f44f89e71e8941ae8502d503cf0d7f5a3a1d062d /client/src/slices | |
parent | 0853de877117f563d0d01566a519c938356a6529 (diff) |
Make start icons end icons
Diffstat (limited to 'client/src/slices')
-rw-r--r-- | client/src/slices/auth/adminSlice.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/slices/auth/adminSlice.ts b/client/src/slices/auth/adminSlice.ts index 330fdb8..cc2205e 100644 --- a/client/src/slices/auth/adminSlice.ts +++ b/client/src/slices/auth/adminSlice.ts @@ -10,7 +10,7 @@ type AdminAuth = { const adminSlice = createSlice({ name: 'admin', - initialState: { guest: undefined, token: undefined } as AdminAuth, + initialState: { guests: undefined, token: undefined } as AdminAuth, reducers: { setAdmin: ( state, |