From c66e4b86c42678bc56632c3fc0fd51875a9e93f6 Mon Sep 17 00:00:00 2001 From: Adam <24621027+adoyle0@users.noreply.github.com> Date: Mon, 26 Jun 2023 20:34:43 -0400 Subject: [PATCH] accomodate new backend --- frontend/src/components/Slingshot.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/Slingshot.tsx b/frontend/src/components/Slingshot.tsx index 1ddee89..f6d6115 100644 --- a/frontend/src/components/Slingshot.tsx +++ b/frontend/src/components/Slingshot.tsx @@ -12,15 +12,15 @@ export type Ammo = { export default function Slingshot(props: { ammo: Ammo }) { return ( -
+

{props.ammo.title}


-

+ {props.ammo.date} -

+
-
+
) as JSXElement; };