fix: userRobotImage reducer type fix
This commit is contained in:
parent
e88938c32f
commit
e739578bc9
@ -6,13 +6,13 @@ const initialState: string | null = null
|
|||||||
const reducer = (
|
const reducer = (
|
||||||
state = initialState,
|
state = initialState,
|
||||||
action: MetadataDispatchTypes
|
action: MetadataDispatchTypes
|
||||||
): string | null => {
|
): string | null | undefined => {
|
||||||
switch (action.type) {
|
switch (action.type) {
|
||||||
case ActionTypes.SET_USER_ROBOT_IMAGE:
|
case ActionTypes.SET_USER_ROBOT_IMAGE:
|
||||||
return action.payload
|
return action.payload
|
||||||
|
|
||||||
case ActionTypes.RESTORE_STATE:
|
case ActionTypes.RESTORE_STATE:
|
||||||
return action.payload.userRobotImage || null
|
return action.payload.userRobotImage
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return state
|
return state
|
||||||
|
Loading…
Reference in New Issue
Block a user