feat: clean up code formatting and remove unused loading bar logic

This commit is contained in:
maxDorninger
2025-05-25 17:04:38 +02:00
parent 77055705ba
commit 5f2af624c9
4 changed files with 25 additions and 30 deletions

View File

@@ -7,11 +7,6 @@
onMount(() => {
const interval = setInterval(() => {
value += 1;
if (value >= 100) {
value = 0
clearInterval(interval);
}
}, 1);
return () => clearInterval(interval);