aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/utils/ActionBinding.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/utils/ActionBinding.js')
-rw-r--r--src/features/utils/ActionBinding.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/features/utils/ActionBinding.js b/src/features/utils/ActionBinding.js
index 497aa071b..787166d44 100644
--- a/src/features/utils/ActionBinding.js
+++ b/src/features/utils/ActionBinding.js
@@ -24,6 +24,6 @@ export default class ActionBinding {
24 } 24 }
25} 25}
26 26
27export const createActionBindings = actions => ( 27export const createActionBindings = (actions) => (
28 actions.map(a => new ActionBinding(a)) 28 actions.map((a) => new ActionBinding(a))
29); 29);