about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/Sidebar/Sidebar.tsx2
-rw-r--r--src/lib/types.tsx10
2 files changed, 1 insertions, 11 deletions
diff --git a/src/components/Sidebar/Sidebar.tsx b/src/components/Sidebar/Sidebar.tsx
index 901ba87..7ccb0ce 100644
--- a/src/components/Sidebar/Sidebar.tsx
+++ b/src/components/Sidebar/Sidebar.tsx
@@ -3,7 +3,7 @@ import SidebarButton from "./SidebarButton";
 export default function SideBar(props: any) {
   return (
     <div
-      className="relative flex h-full w-full max-w-[20rem] flex-col rounded-xl bg-white bg-clip-border text-gray-700 shadow-xl shadow-blue-gray-900/5">
+      className="relative flex h-full w-full max-w-[20rem] flex-col bg-white bg-clip-border text-gray-700 shadow-xl shadow-blue-gray-900/5">
       <div className="p-4 mb-2">
         <h5 className="block font-sans text-xl antialiased font-semibold leading-snug tracking-normal text-blue-gray-900">
           <a href="/">fs-tracer</a>
diff --git a/src/lib/types.tsx b/src/lib/types.tsx
index 00ab909..a4c6549 100644
--- a/src/lib/types.tsx
+++ b/src/lib/types.tsx
@@ -5,13 +5,3 @@ export type FSTracerFile = {
   contents: string;
   timestamp: string;
 }
-
-interface FileComponentProps {
-  file: FSTracerFile
-}
-
-export default function FileComponent(props: FileComponentProps) {
-  return (
-    <p className="underline">file: {props.file.absolute_path}</p>
-  )
-}