diff --git a/.prettierrc b/.prettierrc
index 10a9d450..90e07eb9 100644
--- a/.prettierrc
+++ b/.prettierrc
@@ -4,7 +4,6 @@
"bracketSameLine": true,
"trailingComma": "none",
"printWidth": 100,
- "tailwindConfig": "./tailwind.config.js",
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"tailwindStylesheet": "./src/app.css"
}
diff --git a/src/lib/components/Actions.svelte b/src/lib/components/Actions.svelte
index c6d016e4..68a730d3 100644
--- a/src/lib/components/Actions.svelte
+++ b/src/lib/components/Actions.svelte
@@ -50,7 +50,9 @@
svg = getSvgElement();
}
- svg.style.backgroundColor = window.getComputedStyle(document.body).getPropertyValue('--background');
+ svg.style.backgroundColor = window
+ .getComputedStyle(document.body)
+ .getPropertyValue('--background');
const svgString = svg.outerHTML
.replaceAll('
', '
')