Closed
Description
if browser not support Symbol ,the action.key is string not equal to object , so push error and not send api
for (let key in action) {
if (key !== [CALL_API]) {
validationErrors.push(`Invalid root key: ${key}`);
}
}
I fount if browser support Symbol , do not enter this for
loop . because action.key is real Symbol
Maybe this validate is not necessary .