Skip to content

Commit 2bfa172

Browse files
ntuckerljharb
andauthored
internal: void return
Co-authored-by: Jordan Harband <[email protected]>
1 parent 2cccf97 commit 2bfa172

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/state/reducer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export default function reducer(
7272
if (action.meta.update) {
7373
const updaters = action.meta.update(result);
7474
Object.keys(updaters).forEach(
75-
key => (results[key] = updaters[key](results[key])),
75+
key => { results[key] = updaters[key](results[key]); },
7676
);
7777
}
7878
return {

0 commit comments

Comments
 (0)