Remove dashboard keyboard listener (#13102)

This commit is contained in:
Josh Hawkins 2024-08-15 16:13:11 -05:00 committed by GitHub
parent 4dce8ff60a
commit 4133e454c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,7 +31,6 @@ import { cn } from "@/lib/utils";
import { LivePlayerError, LivePlayerMode } from "@/types/live";
import { FaCompress, FaExpand } from "react-icons/fa";
import { useResizeObserver } from "@/hooks/resize-observer";
import useKeyboardListener from "@/hooks/use-keyboard-listener";
type LiveDashboardViewProps = {
cameras: CameraConfig[];
@ -248,18 +247,6 @@ export default function LiveDashboardView({
[setPreferredLiveModes],
);
useKeyboardListener(["f"], (key, modifiers) => {
if (!modifiers.down) {
return;
}
switch (key) {
case "f":
toggleFullscreen();
break;
}
});
return (
<div
className="scrollbar-container size-full overflow-y-auto px-1 pt-2 md:p-2"