[Accessibility] Fix typo in upateItemErrorRequestId function name (#48702)
* Fix typo in upateItemErrorRequestId function name * Add changelog file
This commit is contained in:
parent
e0322c57fe
commit
525cd4f946
|
@ -0,0 +1,4 @@
|
|||
Significance: minor
|
||||
Type: tweak
|
||||
|
||||
Fix misspelling in CRUD reducer
|
|
@ -298,7 +298,7 @@ export const createReducer = (
|
|||
};
|
||||
|
||||
case TYPES.UPDATE_ITEM_ERROR:
|
||||
const upateItemErrorRequestId = getRequestIdentifier(
|
||||
const updateItemErrorRequestId = getRequestIdentifier(
|
||||
payload.errorType,
|
||||
payload.key,
|
||||
payload.query
|
||||
|
@ -307,11 +307,11 @@ export const createReducer = (
|
|||
...state,
|
||||
errors: {
|
||||
...state.errors,
|
||||
[ upateItemErrorRequestId ]: payload.error,
|
||||
[ updateItemErrorRequestId ]: payload.error,
|
||||
},
|
||||
requesting: {
|
||||
...state.requesting,
|
||||
[ upateItemErrorRequestId ]: false,
|
||||
[ updateItemErrorRequestId ]: false,
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue