feat: add party user metadata storage and display support, including storage API, Redux actions, state management, and UI updates for profile page
This commit is contained in:
@@ -19,6 +19,9 @@ export function userReducer(state: UserState, action: UserActions): UserState {
|
||||
return { ...state, token: action.token };
|
||||
case 'check-user-session':
|
||||
return { ...state, isSessionValid: action.sessionValid };
|
||||
case 'set-party-user-meta':
|
||||
return { ...state, meta: action.partyUserMeta };
|
||||
|
||||
default:
|
||||
return { ...state };
|
||||
}
|
||||
|
Reference in New Issue
Block a user