Remove dashboard keyboard listener (#13102)

This commit is contained in:
Josh Hawkins 2024-08-15 16:13:11 -05:00 committed by Nicolas Mowen
parent 3650000b31
commit 758b0f9734

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"