style: fix formatting via prettier

This commit is contained in:
2026-08-28 14:29:54 +05:00
parent 10278981ba
commit ada96b3534
124 changed files with 8211 additions and 5662 deletions
+6 -6
View File
@@ -7,16 +7,16 @@
<script>
(() => {
try {
const saved = localStorage.getItem('theme');
const saved = localStorage.getItem("theme");
const theme =
saved === 'dark' || saved === 'light'
saved === "dark" || saved === "light"
? saved
: matchMedia('(prefers-color-scheme: dark)').matches
? 'dark'
: 'light';
: matchMedia("(prefers-color-scheme: dark)").matches
? "dark"
: "light";
document.documentElement.dataset.theme = theme;
} catch {
document.documentElement.dataset.theme = 'light';
document.documentElement.dataset.theme = "light";
}
})();
</script>