diff options
| author | Ashm Walia <40498934+ashmgarv@users.noreply.github.com> | 2021-01-31 13:16:41 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-31 13:16:41 -0800 |
| commit | b7509400433169e698450e4a7667d268439dcf41 (patch) | |
| tree | 92fcfb0f91d1498f8a36762a1ee650f17dbb3af8 /src/store/reducers | |
| parent | ce18efb5318c230944167d42bbde827aaca4ee4a (diff) | |
| parent | 60d281814c60a471598746b4dad8f3d18be0931c (diff) | |
Merge pull request #209 from ashmgarv/tma-612-611-redesign-comments
[TMA 612/611] Frontend
Diffstat (limited to 'src/store/reducers')
| -rw-r--r-- | src/store/reducers/userReducer.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/store/reducers/userReducer.ts b/src/store/reducers/userReducer.ts index ce497677..1e575339 100644 --- a/src/store/reducers/userReducer.ts +++ b/src/store/reducers/userReducer.ts @@ -53,6 +53,10 @@ const userDataSlice = createSlice({ setNewNotificationReceived: (state, action) => { state.newNotificationReceived = action.payload.newNotificationReceived; }, + + setReplyPosted: (state, action) => { + state.replyPosted = action.payload.replyPosted; + }, }, }); @@ -63,5 +67,6 @@ export const { profileCompletionStageUpdated, setIsOnboardedUser, setNewNotificationReceived, + setReplyPosted, } = userDataSlice.actions; export const userDataReducer = userDataSlice.reducer; |
