From 98615b2962c3a4f1ac09d52ffecffaf768d5fcf8 Mon Sep 17 00:00:00 2001 From: junghyeonsu Date: Wed, 6 Dec 2023 18:01:05 +0900 Subject: [PATCH] chore: change png scale folder name --- figma-plugin/plugin-src/service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/figma-plugin/plugin-src/service.ts b/figma-plugin/plugin-src/service.ts index 1f98fec..81c503d 100644 --- a/figma-plugin/plugin-src/service.ts +++ b/figma-plugin/plugin-src/service.ts @@ -137,7 +137,7 @@ export async function exportFromIconaIconData( if (!value) { return { - scale: `${scale}x`, + scale: `x${scale}`, data: "", }; } @@ -153,7 +153,7 @@ export async function exportFromIconaIconData( const base64String = Base64.fromUint8Array(exportData); return { - scale: `${scale}x`, + scale: `x${scale}`, data: base64String, }; }),