@@ -31,7 +31,6 @@ import walletsSlice from "./feature/user/wallets.slice";
31
31
import walletsService from "./services/wallets.service" ;
32
32
import userProfileService from "./services/profile/users.service" ;
33
33
import bountiesService from "./services/bounties.service" ;
34
- // import profileReducer from "./feature/profile";
35
34
import userReferralsSlice from "./feature/user/referrals.slice" ;
36
35
import web3WalletSlice from "./feature/wallet.slice" ;
37
36
import certificateSlice from "./feature/profile/certificate.slice" ;
@@ -86,13 +85,10 @@ export interface IRootState {
86
85
courses : ReturnType < typeof courseSlice . reducer > ;
87
86
feedback : ReturnType < typeof feedbackSlice . reducer > ;
88
87
learningModules : ReturnType < typeof learningModulesSlice . reducer > ;
89
- // profile: ReturnType<typeof profileReducer>;
90
- //testing
91
88
profileCommunities : ReturnType < typeof communitiesProfile . reducer > ;
92
89
profileReputation : ReturnType < typeof reputationSlice . reducer > ;
93
90
profileUser : ReturnType < typeof userProfileSlice . reducer > ;
94
91
profileCertificate : ReturnType < typeof certificateSlice . reducer > ;
95
-
96
92
certificates : ReturnType < typeof certificateSlice . reducer > ;
97
93
sumsubVerification : ReturnType < typeof sumsubVerificationSlice . reducer > ;
98
94
payouts : ReturnType < typeof payoutsSlice . reducer > ;
@@ -118,26 +114,18 @@ export const makeStore = () =>
118
114
[ submissionsSlice . name ] : submissionsSlice . reducer ,
119
115
[ eventsSlice . name ] : eventsSlice . reducer ,
120
116
[ bountiesSlice . name ] : bountiesSlice . reducer ,
121
- [ navigationSlice . name ] : navigationSlice . reducer ,
122
- [ communitySlice . name ] : communitySlice . reducer ,
123
- [ eventsSlice . name ] : eventsSlice . reducer ,
124
- [ submissionsSlice . name ] : submissionsSlice . reducer ,
125
- [ eventsSlice . name ] : eventsSlice . reducer ,
126
117
[ communitySlice . name ] : communitySlice . reducer ,
127
118
[ learningModulesSlice . name ] : learningModulesSlice . reducer ,
128
119
[ userProfileSlice . name ] : userProfileSlice . reducer ,
129
120
[ userReputationSlice . name ] : userReputationSlice . reducer ,
130
121
[ feedbackSlice . name ] : feedbackSlice . reducer ,
131
122
[ challengeSlice . name ] : challengeSlice . reducer ,
132
123
[ web3WalletSlice . name ] : web3WalletSlice . reducer ,
133
- [ learningModulesSlice . name ] : learningModulesSlice . reducer ,
134
124
[ communityService . reducerPath ] : communityService . reducer ,
135
125
[ bountiesService . reducerPath ] : bountiesService . reducer ,
136
- [ authService . reducerPath ] : authService . reducer ,
137
126
[ coursesService . reducerPath ] : coursesService . reducer ,
138
127
[ certificateService . reducerPath ] : certificateService . reducer ,
139
128
[ walletsService . reducerPath ] : walletsService . reducer ,
140
- [ bountiesService . reducerPath ] : bountiesService . reducer ,
141
129
[ reputationProfileService . reducerPath ] : reputationProfileService . reducer ,
142
130
[ profileCommunitiesService . reducerPath ] : profileCommunitiesService . reducer ,
143
131
[ userService . reducerPath ] : userService . reducer ,
@@ -155,12 +143,8 @@ export const makeStore = () =>
155
143
[ challengeService . reducerPath ] : challengeService . reducer ,
156
144
[ scoreboardService . reducerPath ] : scoreboardService . reducer ,
157
145
[ invitesSlice . name ] : invitesSlice . reducer ,
158
- // profile: profileReducer,
159
- //testing
160
146
[ communitiesProfile . name ] : communitiesProfile . reducer ,
161
147
[ reputationSlice . name ] : reputationSlice . reducer ,
162
- [ userProfileSlice . name ] : userProfileSlice . reducer ,
163
- // [certificateSlice.name]: certificateSlice.reducer,
164
148
} ,
165
149
166
150
middleware : ( getDefaultMiddleware ) => {
0 commit comments