diff --git a/apps/dashboard/src/components/walkthrough/walkthrough-provider.tsx b/apps/dashboard/src/components/walkthrough/walkthrough-provider.tsx index a60722792..668dbf063 100644 --- a/apps/dashboard/src/components/walkthrough/walkthrough-provider.tsx +++ b/apps/dashboard/src/components/walkthrough/walkthrough-provider.tsx @@ -132,7 +132,7 @@ function WalkthroughEngine() { if (!isRunning) return; const handleKey = (e: KeyboardEvent) => { - if (e.key === 'Escape') { + if (e.key === 'Escape' && e.isTrusted) { e.preventDefault(); stop(); }