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" },
]