Fix unicode escape in JSX text content
Some checks failed
Build and Push / build (push) Has been cancelled

This commit is contained in:
KansaiGaijin
2026-07-30 10:39:53 +12:00
parent 6c760b5e2e
commit 0936a5bae2

View File

@@ -57,7 +57,7 @@ export default function Sidebar() {
}}
>
<span className="truncate">{c.name}</span>
{c.id === currentCampaign?.id && <span className="text-brass text-xs">\u2713</span>}
{c.id === currentCampaign?.id && <span className="text-brass text-xs">{"\u2713"}</span>}
</button>
))}
<div className="border-t border-white/10">