From 03a613474e36070bc8239bd250ba441f24c3bb13 Mon Sep 17 00:00:00 2001 From: ChenZhoYu <790348264@qq.com> Date: Wed, 5 Jun 2024 09:12:15 +0800 Subject: [PATCH] fix: excess parameter --- src/components/downloadSvg.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/downloadSvg.svelte b/src/components/downloadSvg.svelte index 5b474e6..1086581 100644 --- a/src/components/downloadSvg.svelte +++ b/src/components/downloadSvg.svelte @@ -53,8 +53,8 @@ }) => { const zip = new JSZip(); - const lightSvg = await getSvgContent(lightRoute, false); - const darkSvg = await getSvgContent(darkRoute, false); + const lightSvg = await getSvgContent(lightRoute); + const darkSvg = await getSvgContent(darkRoute); if (isWordmark) { zip.file(`${svgInfo.title}_wordmark_light.svg`, lightSvg);