From 7babbb319c2fff8e3660af2572172c13e5d083bc Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 30 Apr 2024 06:52:08 -0600 Subject: [PATCH] Fix key --- web/src/components/Statusbar.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/src/components/Statusbar.tsx b/web/src/components/Statusbar.tsx index 1ea609d74..00374ad71 100644 --- a/web/src/components/Statusbar.tsx +++ b/web/src/components/Statusbar.tsx @@ -131,7 +131,11 @@ export default function Statusbar() { ); if (link) { - return {message}; + return ( + + {message} + + ); } else { return message; }