diff options
| author | Ashm Walia <ashmwalia@outlook.com> | 2021-01-31 02:35:25 -0800 |
|---|---|---|
| committer | Ashm Walia <ashmwalia@outlook.com> | 2021-01-31 02:35:25 -0800 |
| commit | 69b337ed7c3844cf04a6bd1c0557ba598735f34e (patch) | |
| tree | 46a880f8acff035041fb107b95f3526c63cab1ff /src/store | |
| parent | a3000926cb26d9ca2afba116d875653783fb622b (diff) | |
Fixed comments
Diffstat (limited to 'src/store')
| -rw-r--r-- | src/store/actions/user.ts | 1 | ||||
| -rw-r--r-- | src/store/reducers/userReducer.ts | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/store/actions/user.ts b/src/store/actions/user.ts index af942592..5f49a103 100644 --- a/src/store/actions/user.ts +++ b/src/store/actions/user.ts @@ -118,7 +118,6 @@ export const updateReplyPosted = ( ): ThunkAction<Promise<void>, RootState, unknown, Action<string>> => async ( dispatch, ) => { - console.log(replyPosted); try { dispatch({ type: setReplyPosted.type, diff --git a/src/store/reducers/userReducer.ts b/src/store/reducers/userReducer.ts index 0ef739ac..1e575339 100644 --- a/src/store/reducers/userReducer.ts +++ b/src/store/reducers/userReducer.ts @@ -55,7 +55,6 @@ const userDataSlice = createSlice({ }, setReplyPosted: (state, action) => { - console.log(action.payload.replyPosted); state.replyPosted = action.payload.replyPosted; }, }, |
