From b1e9b442ff09d907cdb9f5da5a261d48c0ad0296 Mon Sep 17 00:00:00 2001 From: "Daniel S. Hansen" Date: Fri, 26 Sep 2025 12:05:47 -0700 Subject: [PATCH] Revert "Merge branch 'feature/add-deformation-tab' into 'main'" This reverts commit a94c6de39a2f9cd85ec8e9587f868aebce5896e5, reversing changes made to ec72385de0bcb9809d0b7004e776877574a8b912. --- client/src/components/Canvas/views/Home.jsx | 4 ---- .../Canvas/views/HomeTabs/Deformation.jsx | 22 ------------------- client/src/constants/viewKeys.js | 1 - 3 files changed, 27 deletions(-) delete mode 100644 client/src/components/Canvas/views/HomeTabs/Deformation.jsx diff --git a/client/src/components/Canvas/views/Home.jsx b/client/src/components/Canvas/views/Home.jsx index 76b45e5..a04309f 100644 --- a/client/src/components/Canvas/views/Home.jsx +++ b/client/src/components/Canvas/views/Home.jsx @@ -6,7 +6,6 @@ import { DailyActivity } from "./HomeTabs/DailyActivity"; import { Gas } from "./HomeTabs/Gas"; import { Seismic } from "./HomeTabs/Seismic"; import { RemoteSensing } from "./HomeTabs/RemoteSensing"; -import { Deformation } from "./HomeTabs/Deformation" import { CancelButton } from "../CanvasComponents/CancelButton"; import { SaveButton } from "../CanvasComponents/SaveButton"; import DeleteAllButton from "../CanvasComponents/DeleteAllButton"; @@ -162,9 +161,6 @@ export default function Home(props) { - - - diff --git a/client/src/components/Canvas/views/HomeTabs/Deformation.jsx b/client/src/components/Canvas/views/HomeTabs/Deformation.jsx deleted file mode 100644 index e20217d..0000000 --- a/client/src/components/Canvas/views/HomeTabs/Deformation.jsx +++ /dev/null @@ -1,22 +0,0 @@ -import { Box, Text } from "@chakra-ui/react"; - -export function Deformation() { - return( - - - Deformation page coming soon. - - - ); -} \ No newline at end of file diff --git a/client/src/constants/viewKeys.js b/client/src/constants/viewKeys.js index 88fed19..b511ae5 100644 --- a/client/src/constants/viewKeys.js +++ b/client/src/constants/viewKeys.js @@ -4,7 +4,6 @@ export const DASHBOARD_TABS = [ { value: "gas", label: "Gas" }, { value: "seismic", label: "Seismic" }, { value: "remote", label: "Remote Sensing" }, - { value: "deformation", label: "Deformation" }, { value: "daily", label: "Daily Activity" }, ]