From ec1a177358e4c16e50bac3f96964e49a9ec5bd9a Mon Sep 17 00:00:00 2001
From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com>
Date: Wed, 8 May 2024 07:46:40 -0500
Subject: [PATCH] change icon
---
web/src/views/live/DraggableGridLayout.tsx | 4 ++--
web/src/views/live/LiveDashboardView.tsx | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/web/src/views/live/DraggableGridLayout.tsx b/web/src/views/live/DraggableGridLayout.tsx
index c6a66c47c..44f7e0b53 100644
--- a/web/src/views/live/DraggableGridLayout.tsx
+++ b/web/src/views/live/DraggableGridLayout.tsx
@@ -31,7 +31,7 @@ import {
TooltipTrigger,
} from "@/components/ui/tooltip";
import { IoClose } from "react-icons/io5";
-import { LuMoveDiagonal2 } from "react-icons/lu";
+import { LuMove } from "react-icons/lu";
import { cn } from "@/lib/utils";
type DraggableGridLayoutProps = {
@@ -394,7 +394,7 @@ function DesktopEditLayoutButton({
{isEditMode ? (
) : (
-
+
)}
diff --git a/web/src/views/live/LiveDashboardView.tsx b/web/src/views/live/LiveDashboardView.tsx
index 83377024d..3a9616195 100644
--- a/web/src/views/live/LiveDashboardView.tsx
+++ b/web/src/views/live/LiveDashboardView.tsx
@@ -22,7 +22,7 @@ import {
import useSWR from "swr";
import DraggableGridLayout from "./DraggableGridLayout";
import { IoClose } from "react-icons/io5";
-import { LuMoveDiagonal2 } from "react-icons/lu";
+import { LuMove } from "react-icons/lu";
type LiveDashboardViewProps = {
cameras: CameraConfig[];
@@ -196,7 +196,7 @@ export default function LiveDashboardView({
setIsEditMode((prevIsEditMode) => !prevIsEditMode)
}
>
- {isEditMode ? : }
+ {isEditMode ? : }
)}