From 09aaec78972e1c6b8328abf8d8b486fa05e5919a Mon Sep 17 00:00:00 2001 From: bra11311 Date: Mon, 12 Aug 2024 11:27:03 -0700 Subject: [PATCH] fix: don't apply token to logoUrl --- src/functionality/configUtils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/functionality/configUtils.ts b/src/functionality/configUtils.ts index d1e94a0..6ca7bc2 100644 --- a/src/functionality/configUtils.ts +++ b/src/functionality/configUtils.ts @@ -361,9 +361,9 @@ function getLogoDetails( const logo = (customTheme?.logoSource === "url" ? customTheme?.logoUrl - : customTheme?.logo) ?? ""; + : applyToken(token, customTheme?.logo)) ?? ""; return { - logo: applyToken(token, logo), + logo, link: customTheme?.logoLink }; }