diff --git a/src/lib/components/organisms/modals/TextInputModal.svelte b/src/lib/components/organisms/modals/TextInputModal.svelte
index 9131a11..e1fd2c4 100644
--- a/src/lib/components/organisms/modals/TextInputModal.svelte
+++ b/src/lib/components/organisms/modals/TextInputModal.svelte
@@ -22,7 +22,7 @@
title,
}: Props = $props();
- let value = $state(defaultValue);
+ let value = $state("");
$effect.pre(() => {
if (isOpen) {
diff --git a/src/routes/(main)/+layout.svelte b/src/routes/(main)/+layout.svelte
index e58d5e1..50c9af4 100644
--- a/src/routes/(main)/+layout.svelte
+++ b/src/routes/(main)/+layout.svelte
@@ -6,10 +6,8 @@
-
-
- {@render children()}
-
-
+
+ {@render children()}
+
diff --git a/src/routes/(main)/BottomBar.svelte b/src/routes/(main)/BottomBar.svelte
index d3e7a74..51d5d2d 100644
--- a/src/routes/(main)/BottomBar.svelte
+++ b/src/routes/(main)/BottomBar.svelte
@@ -19,20 +19,18 @@
-
-
- {#each pages as { path, label, icon: Icon }}
- {@const textColor = !page.url.pathname.startsWith(path) ? "text-gray-600" : ""}
-
- {/each}
-
+
+ {#each pages as { path, label, icon: Icon }}
+ {@const textColor = !page.url.pathname.startsWith(path) ? "text-gray-600" : ""}
+
+ {/each}