From 9714765e150337d1ab6c2290d5f5377cc7704a8a Mon Sep 17 00:00:00 2001 From: Liam Date: Tue, 16 Apr 2024 21:57:09 +0100 Subject: [PATCH] actually fix motd on phones --- src/app/components/card.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/card.tsx b/src/app/components/card.tsx index b00e925..a33f845 100644 --- a/src/app/components/card.tsx +++ b/src/app/components/card.tsx @@ -3,5 +3,5 @@ export function Card({ }: Readonly<{ children: React.ReactNode; }>): JSX.Element { - return
{children}
; + return
{children}
; }