fix: fix error user dont get updated targetWorkingHours

also perform code formatting and cleanup
This commit is contained in:
Patryk Hegenberg 2026-01-16 11:25:34 +01:00
parent 3fadb6d86d
commit 8fe3d71dde
21 changed files with 2348 additions and 1235 deletions

View file

@ -1,9 +1,9 @@
import { mount } from 'svelte';
import './app.css';
import App from './App.svelte';
import { mount } from "svelte";
import "./app.css";
import App from "./App.svelte";
const app = mount(App, {
target: document.getElementById('app'),
target: document.getElementById("app"),
});
export default app;