This commit is contained in:
GH Action - Upstream Sync
2023-06-27 00:45:08 +00:00
8 changed files with 48 additions and 15 deletions

View File

@@ -37,7 +37,7 @@ function useHotKey() {
useEffect(() => {
const onKeyDown = (e: KeyboardEvent) => {
if (e.metaKey || e.altKey || e.ctrlKey) {
if (e.altKey || e.ctrlKey) {
if (e.key === "ArrowUp") {
chatStore.nextSession(-1);
} else if (e.key === "ArrowDown") {