Skip to content

Commit

Permalink
exec: npm run format
Browse files Browse the repository at this point in the history
  • Loading branch information
taconi committed Jan 20, 2025
1 parent fcaca9d commit ae6266f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions packages/web/src/routes/session.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -474,9 +474,12 @@ export function Component() {
},
[documents, ...editorRefs],
);
useShortcut(["Meta-Shift-H", "Control-Shift-H", "Meta-Alt-H","Control-Alt-H"], () => {
setHidden((p) => !p);
});
useShortcut(
["Meta-Shift-H", "Control-Shift-H", "Meta-Alt-H", "Control-Alt-H"],
() => {
setHidden((p) => !p);
},
);
useShortcut(["Control-,", "Meta-,"], () => {
setMessagesPanelExpanded((v) => !v);
});
Expand Down

0 comments on commit ae6266f

Please sign in to comment.