From 7f551dbbe6b72cfa9c837ef9af06c07a78daf0a9 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Wed, 28 Jan 2026 00:32:44 +0530 Subject: [PATCH] fix: lint errors --- .prettierrc | 1 - src/lib/components/Actions.svelte | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) 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('
', '
')