From 7b13d04a217c04abbcfd934c5456f725bd45e794 Mon Sep 17 00:00:00 2001 From: Rajat Parashar Date: Wed, 24 Nov 2021 23:36:12 +0530 Subject: [PATCH] fix: crash --- src/libs/KeyboardShortcut/index.native.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/KeyboardShortcut/index.native.js b/src/libs/KeyboardShortcut/index.native.js index 8b331bc17bdb..ae1d49830dce 100644 --- a/src/libs/KeyboardShortcut/index.native.js +++ b/src/libs/KeyboardShortcut/index.native.js @@ -6,8 +6,8 @@ const KeyboardShortcut = { subscribe() { return () => {}; }, - unsubscribe() {}, - getKeyboardShortcutMap() {}, + getKeyboardShortcuts() { return []; }, + getShortcutModifiers() { return []; }, }; export default KeyboardShortcut;