From 8c000ba0b74fde0a321914c72922e16af7e0f190 Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 16 May 2025 00:26:30 -0400 Subject: [PATCH] fix: correct string interpolation for activity display in Lanyard component --- src/front/components/Lanyard/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/front/components/Lanyard/index.tsx b/src/front/components/Lanyard/index.tsx index 871807c..ffb83e1 100644 --- a/src/front/components/Lanyard/index.tsx +++ b/src/front/components/Lanyard/index.tsx @@ -42,7 +42,7 @@ export default () => { lanyard.activities.map((act) => { const type = activityTypes[act.type]; const parts = [ - `${type} ${act.name === "Custom Status" ? "" : act.name}`, + `${type}${act.name === "Custom Status" ? "" : ` ${act.name}`}`, ]; if (act.details && act.details !== act.name) parts.push(act.details);