diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-02-11 16:49:31 -0500 |
|---|---|---|
| committer | Ivan Chen <ivan@tagg.id> | 2021-02-11 16:49:31 -0500 |
| commit | 97e73f47622df32859964df4c94a4d419590bee2 (patch) | |
| tree | 9e2fdacee1040a9e9f975a329846dfa60cf5f3a4 /src/store/reducers | |
| parent | dc2da789ed0f440e0da8020f891bb490536a38fe (diff) | |
| parent | 3bc52c4e021199c5b546d51cd238aad9a96852a7 (diff) | |
Merge branch 'master' into tma255-taggs-bar
# Conflicts:
# src/components/common/SocialLinkModal.tsx
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 1e575339..29ec38cc 100644 --- a/src/store/reducers/userReducer.ts +++ b/src/store/reducers/userReducer.ts @@ -57,6 +57,10 @@ const userDataSlice = createSlice({ setReplyPosted: (state, action) => { state.replyPosted = action.payload.replyPosted; }, + + setNewVersionAvailable: (state, action) => { + state.newVersionAvailable = action.payload.newVersionAvailable; + }, }, }); @@ -66,6 +70,7 @@ export const { socialEdited, profileCompletionStageUpdated, setIsOnboardedUser, + setNewVersionAvailable, setNewNotificationReceived, setReplyPosted, } = userDataSlice.actions; |
