fix: userRobotImage reducer type fix

This commit is contained in:
Davinci 2024-05-17 13:49:23 +02:00 committed by Yury
parent e88938c32f
commit e739578bc9

View File

@ -6,13 +6,13 @@ const initialState: string | null = null
const reducer = (
state = initialState,
action: MetadataDispatchTypes
): string | null => {
): string | null | undefined => {
switch (action.type) {
case ActionTypes.SET_USER_ROBOT_IMAGE:
return action.payload
case ActionTypes.RESTORE_STATE:
return action.payload.userRobotImage || null
return action.payload.userRobotImage
default:
return state