fix: lint errors

This commit is contained in:
Sidharth Vinod
2026-01-28 00:32:44 +05:30
parent 5dd2fe4bd0
commit 7f551dbbe6
2 changed files with 3 additions and 2 deletions
-1
View File
@@ -4,7 +4,6 @@
"bracketSameLine": true, "bracketSameLine": true,
"trailingComma": "none", "trailingComma": "none",
"printWidth": 100, "printWidth": 100,
"tailwindConfig": "./tailwind.config.js",
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"], "plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"tailwindStylesheet": "./src/app.css" "tailwindStylesheet": "./src/app.css"
} }
+3 -1
View File
@@ -50,7 +50,9 @@
svg = getSvgElement(); svg = getSvgElement();
} }
svg.style.backgroundColor = window.getComputedStyle(document.body).getPropertyValue('--background'); svg.style.backgroundColor = window
.getComputedStyle(document.body)
.getPropertyValue('--background');
const svgString = svg.outerHTML const svgString = svg.outerHTML
.replaceAll('<br>', '<br/>') .replaceAll('<br>', '<br/>')