From 7103019890960e793deefb64987a09b33be60b42 Mon Sep 17 00:00:00 2001 From: Michael Hunteman Date: Fri, 17 May 2024 15:20:30 -0700 Subject: Add golang server --- src/features/auth/authSlice.ts | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/features/auth/authSlice.ts (limited to 'src/features/auth/authSlice.ts') diff --git a/src/features/auth/authSlice.ts b/src/features/auth/authSlice.ts deleted file mode 100644 index bff2bdd..0000000 --- a/src/features/auth/authSlice.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { createSlice } from '@reduxjs/toolkit'; -import type { RootState } from '../../store'; -import type { Guest } from '../../apiSlice'; - -type AuthState = { - guest?: Guest; - token?: string; -}; - -const authSlice = createSlice({ - name: 'auth', - initialState: { guest: undefined, token: undefined } as AuthState, - reducers: { - setCredentials: (state, action) => { - const { guest, token } = action.payload; - state.guest = guest; - state.token = token; - }, - }, -}); - -export const { setCredentials } = authSlice.actions; - -export default authSlice.reducer; - -export const selectCurrentGuest = (state: RootState) => state.auth.guest; -- cgit v1.2.3