Commit 32c02ee Ju
committed
1 parent 5772c93 commit 32c02ee Copy full SHA for 32c02ee
File tree 1 file changed +12
-12
lines changed
1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -178,18 +178,18 @@ const LoginSlice = createSlice({
178
178
} ,
179
179
extraReducers : {
180
180
//카카오 소셜로그인
181
- [ __kakaologin . pending ] : ( state ) => {
182
- state . isLoading = true ;
183
- } ,
184
- [ __kakaologin . fulfilled ] : ( state , action ) => {
185
- state . isLoading = false ;
186
- state . loginCheck = true ;
187
- state . email = action . payload ;
188
- } ,
189
- [ __kakaologin . rejected ] : ( state , action ) => {
190
- state . isLoading = false ;
191
- state . error = action . payload ;
192
- } ,
181
+ // [__kakaologin.pending]: (state) => {
182
+ // state.isLoading = true;
183
+ // },
184
+ // [__kakaologin.fulfilled]: (state, action) => {
185
+ // state.isLoading = false;
186
+ // state.loginCheck = true;
187
+ // state.email = action.payload;
188
+ // },
189
+ // [__kakaologin.rejected]: (state, action) => {
190
+ // state.isLoading = false;
191
+ // state.error = action.payload;
192
+ // },
193
193
[ __sendEmail . pending ] : ( state ) => {
194
194
state . isLoading = true ;
195
195
} ,
You can’t perform that action at this time.
0 commit comments