style: run eslint and prettier
All checks were successful
TrafficCue CI / check (push) Successful in 58s
TrafficCue CI / build (push) Successful in 47s

This commit is contained in:
Cfp
2025-08-11 18:59:04 +02:00
parent 9d5319aee2
commit d7db55cd29
19 changed files with 1006 additions and 936 deletions

View File

@ -1,7 +1,7 @@
export function getDeveloperToggle() {
const value = localStorage.getItem("developer")
const value = localStorage.getItem("developer");
const state = $state({
current: value == null ? "false" : value
current: value == null ? "false" : value,
});
$effect(() => {
@ -9,4 +9,4 @@ export function getDeveloperToggle() {
});
return state;
}
}