From 0936a5bae283a9f138ce1b0294ae9762b3e31453 Mon Sep 17 00:00:00 2001 From: KansaiGaijin <83641841+KansaiGaijin@users.noreply.github.com> Date: Thu, 30 Jul 2026 10:39:53 +1200 Subject: [PATCH] Fix unicode escape in JSX text content --- frontend/src/components/Sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/Sidebar.tsx b/frontend/src/components/Sidebar.tsx index 98d3c60..1661ed0 100644 --- a/frontend/src/components/Sidebar.tsx +++ b/frontend/src/components/Sidebar.tsx @@ -57,7 +57,7 @@ export default function Sidebar() { }} > {c.name} - {c.id === currentCampaign?.id && \u2713} + {c.id === currentCampaign?.id && {"\u2713"}} ))}