diff --git a/src/plugins/webKeybinds.web/index.ts b/src/plugins/webKeybinds.web/index.ts index d2f31ead..3357c78f 100644 --- a/src/plugins/webKeybinds.web/index.ts +++ b/src/plugins/webKeybinds.web/index.ts @@ -35,7 +35,7 @@ export default definePlugin({ if (hasCtrl) switch (e.key) { case "t": case "T": - if (!IS_VESKTOP || !IS_EQUIBOP) return; + if (!IS_VESKTOP && !IS_EQUIBOP) return; e.preventDefault(); if (e.shiftKey) { if (SelectedGuildStore.getGuildId()) NavigationRouter.transitionToGuild("@me"); @@ -49,7 +49,7 @@ export default definePlugin({ } break; case "Tab": - if (!IS_VESKTOP || !IS_EQUIBOP) return; + if (!IS_VESKTOP && !IS_EQUIBOP) return; const handler = e.shiftKey ? KeyBinds.SERVER_PREV : KeyBinds.SERVER_NEXT; handler.action(e); break;