From b9ce5181911b4c7a8bdfc981b1bb89a3269a74b9 Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 16 May 2025 00:22:42 -0400 Subject: [PATCH] fix linting --- src/front/components/Lanyard/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/front/components/Lanyard/index.tsx b/src/front/components/Lanyard/index.tsx index cc663b2..871807c 100644 --- a/src/front/components/Lanyard/index.tsx +++ b/src/front/components/Lanyard/index.tsx @@ -41,7 +41,9 @@ export default () => { ...new Set( lanyard.activities.map((act) => { const type = activityTypes[act.type]; - const parts = [`${type} ${act.name === "Custom Status" ? "" : 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);