about summary refs log tree commit diff
path: root/src/pages/Home.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/Home.tsx')
-rw-r--r--src/pages/Home.tsx10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index 9c86a9f..37cc7cc 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -7,7 +7,7 @@ import LineGraph from "../components/Graphs/LineGraph"
 export default function Home(props: any) {
   const navigate = useNavigate()
 
-  const [files, setFiles] = useState([])
+  const [_, setFiles] = useState([])
 
   useEffect(() => {
     if (!props.session) {
@@ -43,14 +43,6 @@ export default function Home(props: any) {
           <div className="w-3/12">
             <LineGraph />
           </div>
-          <div>
-            {files.map((file: any) => (
-              <div key={file.id}>
-                <p className="underline">file: {file.absolute_path}</p>
-              </div>
-            ))
-            }
-          </div>
         </main>
       </div>
     </>