remove backoffice custom authentication

This commit is contained in:
mengstabketemaw
2026-06-05 16:25:50 +03:00
parent aa128664a2
commit f0c64f3c4c
15 changed files with 38 additions and 489 deletions

View File

@@ -1,14 +1,8 @@
import { configureStore } from '@reduxjs/toolkit';
import { baseApi } from '@ema-platform/api';
import { authReducer } from '../features/auth/store/auth.slice';
import { signupReducer } from '../features/auth/store/signup.slice';
import { setPasswordReducer } from '../features/auth/store/set-password.slice';
export const store = configureStore({
reducer: {
auth: authReducer,
signup: signupReducer,
setPassword: setPasswordReducer,
[baseApi.reducerPath]: baseApi.reducer,
},
middleware: (getDefaultMiddleware) =>