Fix typo in quotes list error handling (#39904)

This commit is contained in:
Shlee 2026-07-22 19:59:59 +09:30 committed by GitHub
parent 193a6f3856
commit 45cc65bb7f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -159,7 +159,7 @@ export default function statusLists(state = initialState, action) {
else if (fetchQuotes.pending.match(action))
return state.setIn(['quotes', 'isLoading'], true).setIn(['quotes', 'statusId'], action.meta.arg.statusId);
else if (fetchQuotes.rejected.match(action))
return state.setIn(['quotes', 'isLoading', false]).setIn(['quotes', 'statusId'], action.meta.arg.statusId);
return state.setIn(['quotes', 'isLoading'], false).setIn(['quotes', 'statusId'], action.meta.arg.statusId);
else
return state;
}