Skip to content

Commit

Permalink
chore: change png scale folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
junghyeonsu committed Dec 6, 2023
1 parent 61a224f commit 98615b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions figma-plugin/plugin-src/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export async function exportFromIconaIconData(

if (!value) {
return {
scale: `${scale}x`,
scale: `x${scale}`,
data: "",
};
}
Expand All @@ -153,7 +153,7 @@ export async function exportFromIconaIconData(
const base64String = Base64.fromUint8Array(exportData);

return {
scale: `${scale}x`,
scale: `x${scale}`,
data: base64String,
};
}),
Expand Down

0 comments on commit 98615b2

Please sign in to comment.