From e436045a0cafe9503d58a99efabaf604d04ad2b9 Mon Sep 17 00:00:00 2001 From: Elliot Braem Date: Thu, 18 Dec 2025 12:19:26 -0600 Subject: [PATCH 1/2] modifies default hotkey to be Control ~ --- packages/devtools/src/context/devtools-store.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/devtools/src/context/devtools-store.ts b/packages/devtools/src/context/devtools-store.ts index f312bc6a..94e20032 100644 --- a/packages/devtools/src/context/devtools-store.ts +++ b/packages/devtools/src/context/devtools-store.ts @@ -49,7 +49,7 @@ export type DevtoolsStore = { panelLocation: 'top' | 'bottom' /** * The hotkey to open the dev tools - * @default ["Shift", "A"] + * @default ["Control", "~"] */ openHotkey: Array /** @@ -99,7 +99,7 @@ export const initialState: DevtoolsStore = { hideUntilHover: false, position: 'bottom-right', panelLocation: 'bottom', - openHotkey: ['Shift', 'A'], + openHotkey: ['Control', '~'], inspectHotkey: ['Shift', 'CtrlOrMeta'], requireUrlFlag: false, urlFlag: 'tanstack-devtools', From 53400ed8fae5fd9bfee5a5b4e8a3960f064d0097 Mon Sep 17 00:00:00 2001 From: Elliot Braem Date: Thu, 18 Dec 2025 12:21:16 -0600 Subject: [PATCH 2/2] adds changeset --- .changeset/every-baths-wash.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/every-baths-wash.md diff --git a/.changeset/every-baths-wash.md b/.changeset/every-baths-wash.md new file mode 100644 index 00000000..aefd6f18 --- /dev/null +++ b/.changeset/every-baths-wash.md @@ -0,0 +1,5 @@ +--- +'@tanstack/devtools': minor +--- + +modifies default hotkey to be Control ~, replacing Shift A