diff options
| author | Shravya Ramesh <shravs1208@gmail.com> | 2021-02-19 12:57:27 -0800 |
|---|---|---|
| committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-02-19 13:15:45 -0800 |
| commit | 00c5763a4533b1105ffa4d04921906e0687aa201 (patch) | |
| tree | 1dd78c622fb9fc29557c4211551a3f8f0e91b086 /src/store/reducers | |
| parent | 6bb1c27d4187b7bb5d822d29f498195f8497f432 (diff) | |
Minor change for better understanding of code
Diffstat (limited to 'src/store/reducers')
| -rw-r--r-- | src/store/reducers/userReducer.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store/reducers/userReducer.ts b/src/store/reducers/userReducer.ts index 5203fa3c..5653d26d 100644 --- a/src/store/reducers/userReducer.ts +++ b/src/store/reducers/userReducer.ts @@ -47,7 +47,7 @@ const userDataSlice = createSlice({ }, setSuggestedPeopleLinked: (state, action) => { - state.profile.suggested_people_linked = action.payload.stage; + state.profile.suggested_people_linked = action.payload.suggested_people_linked; }, setIsOnboardedUser: (state, action) => { |
