From 528a2e15f20ac574a0fb636411cc0f61eb47e588 Mon Sep 17 00:00:00 2001 From: Dominik Jain Date: Wed, 14 Jan 2026 19:31:18 +0100 Subject: [PATCH] PenpotUtils.importImage: Fix assigned shape name --- penpot-plugin/src/PenpotUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/penpot-plugin/src/PenpotUtils.ts b/penpot-plugin/src/PenpotUtils.ts index 656f574..c5d9e97 100644 --- a/penpot-plugin/src/PenpotUtils.ts +++ b/penpot-plugin/src/PenpotUtils.ts @@ -211,7 +211,7 @@ export class PenpotUtils { // create a rectangle shape const rect = penpot.createRectangle(); - rect.name = "${escapedFileName}"; + rect.name = name; // calculate dimensions let rectWidth, rectHeight;