fix: excess parameter

This commit is contained in:
ChenZhoYu 2024-06-05 09:12:15 +08:00
parent 6cca1f395e
commit 03a613474e

View File

@ -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);