diff --git a/pages/deploy/index.tsx b/pages/deploy/index.tsx
index f4c4008..3071c93 100644
--- a/pages/deploy/index.tsx
+++ b/pages/deploy/index.tsx
@@ -1,11 +1,8 @@
-import { useSnapshot } from "valtio";
import Container from "../../components/Container";
-import { state } from "../../state";
const Deploy = () => {
- const snap = useSnapshot(state);
return (
- This will be the deploy page {JSON.stringify(snap)}
+ This will be the deploy page
);
};
diff --git a/pages/test/index.tsx b/pages/test/index.tsx
index da05958..3aedf58 100644
--- a/pages/test/index.tsx
+++ b/pages/test/index.tsx
@@ -1,7 +1,7 @@
import Container from "../../components/Container";
const Test = () => {
- return This will be the test page;
+ return This will be the test page;
};
export default Test;