From 6bac1bf833550960a5681559dcc691be9ff570c2 Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 16 May 2025 00:22:12 -0400 Subject: [PATCH] Fix activity display for Custom Status 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 a6ace73..cc663b2 100644 --- a/src/front/components/Lanyard/index.tsx +++ b/src/front/components/Lanyard/index.tsx @@ -41,7 +41,7 @@ export default () => { ...new Set( lanyard.activities.map((act) => { const type = activityTypes[act.type]; - const parts = [`${type} ${act.name}`]; + const parts = [`${type} ${act.name === "Custom Status" ? "" : act.name}`]; if (act.details && act.details !== act.name) parts.push(act.details); if (act.state && act.state !== act.name) parts.push(act.state);