Skip to content

Commit ac9a1ab

Browse files
committed
Keyboard shortcuts are now enabled even when store isn't initialized
1 parent 6b54a90 commit ac9a1ab

File tree

1 file changed

+1
-3
lines changed
  • src/browser/extension/background

1 file changed

+1
-3
lines changed

src/browser/extension/background/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,5 @@ window.store = store;
1010
window.store.liftedStore.instances = {};
1111

1212
chrome.commands.onCommand.addListener(shortcut => {
13-
if (store.liftedStore.isSet()) {
14-
openDevToolsWindow(shortcut);
15-
}
13+
openDevToolsWindow(shortcut);
1614
});

0 commit comments

Comments
 (0)