From 2db5514f2c5476bc0f321b74a82420c3f0b4d5cd Mon Sep 17 00:00:00 2001 From: Venessa Kuchenik Date: Thu, 24 Jul 2025 09:01:35 -0700 Subject: [PATCH] fixing refrences after file rename --- client/src/components/layout/Canvas/Canvas.jsx | 4 ++-- .../src/components/layout/Canvas/views/MyDashboardCanvas.jsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/layout/Canvas/Canvas.jsx b/client/src/components/layout/Canvas/Canvas.jsx index 585d3d6..a12282a 100644 --- a/client/src/components/layout/Canvas/Canvas.jsx +++ b/client/src/components/layout/Canvas/Canvas.jsx @@ -7,12 +7,12 @@ import GlobalMapCanvas from "./views/GlobalMapCanvas"; import RegionalMapCanvas from "./views/RegionalMapCanvas"; import VolcanoCanvas from "./views/VolcanoCanvas"; import AdminCanvas from "./views/AdminCanvas"; -import { DashboardCanvas } from "./views/DashboardCanvas"; +import { MyDashboardCanvas } from "./views/MyDashboardCanvas"; export default function Canvas({ view }) { return ( - {view === "widget" && } + {view === "widget" && } {view === "global" && } {view === "regional" && } {view === "volcano" && } diff --git a/client/src/components/layout/Canvas/views/MyDashboardCanvas.jsx b/client/src/components/layout/Canvas/views/MyDashboardCanvas.jsx index 5fee2cc..4bd1129 100644 --- a/client/src/components/layout/Canvas/views/MyDashboardCanvas.jsx +++ b/client/src/components/layout/Canvas/views/MyDashboardCanvas.jsx @@ -7,7 +7,7 @@ import { Gas } from "./DashboardCanvasNav/Gas"; import { Seismic } from "./DashboardCanvasNav/Seismic"; import { RemoteSensing } from "./DashboardCanvasNav/RemoteSensing"; -export function DashboardCanvas() { +export function MyDashboardCanvas() { return (