Skip to content

Commit

Permalink
remove settingSlice & authSlice
Browse files Browse the repository at this point in the history
  • Loading branch information
zuies committed Dec 22, 2023
1 parent cce04bd commit a4afd24
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 278 deletions.
73 changes: 0 additions & 73 deletions src/store/slices/authSlice.ts

This file was deleted.

108 changes: 0 additions & 108 deletions src/store/slices/settingSlice.ts

This file was deleted.

34 changes: 0 additions & 34 deletions src/store/types/IAuth.ts

This file was deleted.

59 changes: 0 additions & 59 deletions src/store/types/ISetting.ts

This file was deleted.

4 changes: 0 additions & 4 deletions src/store/useStore.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { create } from 'zustand';
import createAuthSlice from './slices/authSlice';
import createChartSlice from './slices/chartSlice';
import createSettingSlice from './slices/settingSlice';
import createBreakdownsSlice from './slices/breakdownsSlice';
import createMemberInteractionSlice from './slices/memberInteractionSlice';
import communityHealthSlice from './slices/communityHealthSlice';
Expand All @@ -11,9 +9,7 @@ import platformSlice from './slices/platformSlice';
import userSlice from './slices/userSlice';

const useAppStore = create<any>()((...a) => ({
...createAuthSlice(...a),
...createChartSlice(...a),
...createSettingSlice(...a),
...createBreakdownsSlice(...a),
...createMemberInteractionSlice(...a),
...communityHealthSlice(...a),
Expand Down

0 comments on commit a4afd24

Please sign in to comment.