We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afb208b commit 3e7fdf3Copy full SHA for 3e7fdf3
lib/AsyncStorage.js
@@ -353,7 +353,7 @@ const AsyncStorage = {
353
callback?: ?(errors: ?$ReadOnlyArray<?Error>) => void,
354
): Promise<null> {
355
return new Promise((resolve, reject) => {
356
- keys.forEach(checkValidInput);
+ keys.forEach(key => checkValidInput(key));
357
358
RCTAsyncStorage.multiRemove(keys, function(errors) {
359
const error = convertErrors(errors);
0 commit comments