From c2dfb2f82ed3fe1fa18dba9f35c9bfe529950b55 Mon Sep 17 00:00:00 2001 From: Adam <24621027+adoyle0@users.noreply.github.com> Date: Mon, 19 Jun 2023 01:55:59 -0400 Subject: [PATCH] rm useless ul --- frontend/src/components/Slingshot.tsx | 4 ++-- frontend/src/routes/blog.tsx | 6 +++--- frontend/src/routes/index.tsx | 6 +++--- frontend/src/routes/projects.tsx | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/frontend/src/components/Slingshot.tsx b/frontend/src/components/Slingshot.tsx index 13ac45e..1ddee89 100644 --- a/frontend/src/components/Slingshot.tsx +++ b/frontend/src/components/Slingshot.tsx @@ -12,7 +12,7 @@ export type Ammo = { export default function Slingshot(props: { ammo: Ammo }) { return ( - + {props.ammo.title} @@ -21,6 +21,6 @@ export default function Slingshot(props: { ammo: Ammo }) { {props.ammo.date} - + ) as JSXElement; }; diff --git a/frontend/src/routes/blog.tsx b/frontend/src/routes/blog.tsx index 25f8efd..71b1ecd 100644 --- a/frontend/src/routes/blog.tsx +++ b/frontend/src/routes/blog.tsx @@ -22,10 +22,10 @@ export default function Blog() { const { ammoBox } = useRouteData(); return ( - + - {(blogPosts) => } + {(blogPosts) => } - + ) as JSXElement; }; diff --git a/frontend/src/routes/index.tsx b/frontend/src/routes/index.tsx index 247f288..1a0870e 100644 --- a/frontend/src/routes/index.tsx +++ b/frontend/src/routes/index.tsx @@ -23,10 +23,10 @@ export default function Home() { const { ammoBox } = useRouteData(); return ( - + - {(content) => } + {(content) => } - + ) as JSXElement; }; diff --git a/frontend/src/routes/projects.tsx b/frontend/src/routes/projects.tsx index 008fb6f..b33533e 100644 --- a/frontend/src/routes/projects.tsx +++ b/frontend/src/routes/projects.tsx @@ -23,10 +23,10 @@ export default function Projects() { const { ammoBox } = useRouteData(); return ( - + - {(projects) => } + {(projects) => } - + ) as JSXElement; };