From c4ac0bc6ff9ea270ae0821548fba49807955c320 Mon Sep 17 00:00:00 2001
From: "google-labs-jules[bot]"
<161369871+google-labs-jules[bot]@users.noreply.github.com>
Date: Tue, 25 Aug 2026 15:26:25 +0000
Subject: [PATCH] fix: remove solid white background from SVG export
The SVG export function (`buildSvg`) explicitly included a `` as the background. This prevented the design from having a transparent background, causing issues with vector/laser software. This removes the rect element, allowing a transparent background.
Co-authored-by: TechJeeper <5033913+TechJeeper@users.noreply.github.com>
---
assets/app.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/assets/app.js b/assets/app.js
index 17ef786..401dd03 100644
--- a/assets/app.js
+++ b/assets/app.js
@@ -1327,7 +1327,7 @@ self.onmessage = function(e) {
} else {
svgContent = ` `;
}
- return ``;
+ return ``;
};
let blob = svgBlobFromString(buildSvg());