From d55f38ba1ad6c2633d2b753d9eaba15966a7f11d Mon Sep 17 00:00:00 2001 From: seth Date: Wed, 18 Jun 2025 20:28:34 -0400 Subject: [PATCH] fix: correct image URL size parameter in getImageUrl function --- 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 7d904c5..9f2b1bd 100644 --- a/src/front/components/Lanyard/index.tsx +++ b/src/front/components/Lanyard/index.tsx @@ -19,7 +19,7 @@ const getImageUrl = (activity: LanyardActivity, size: "large" | "small") => { const width = size === "large" ? 120 : 40; if (!activity.assets || !activity.assets.large_image) { if (size === "large") - return `https://dcdn.dstn.to/app-icons/${activity.application_id}?size=${width}`; + return `https://dcdn.dstn.to/app-icons/${activity.application_id}?size=128`; } if (!activity.assets) return null;