We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f876fc2 commit 191f349Copy full SHA for 191f349
1 file changed
src/pages/web/index.tsx
@@ -7,6 +7,8 @@ import { useIsMobile } from "@/hooks/useIsMobile";
7
8
import "@/i18n";
9
import "@/web.css";
10
+import { useModifierKeyPress } from "@/hooks/useModifierKeyPress";
11
+import useEscape from "@/hooks/useEscape";
12
13
interface WebAppProps {
14
headers?: Record<string, unknown>;
@@ -67,6 +69,10 @@ function WebApp({
67
69
68
70
const [isChatMode, setIsChatMode] = useState(false);
71
72
+ useEscape();
73
+
74
+ useModifierKeyPress();
75
76
return (
77
<div
78
id="searchChat-container"
0 commit comments