+
{/if}
-
-
diff --git a/frontend/src/components/Skeleton.svelte b/frontend/src/components/Skeleton.svelte
index d201f7d..ed8c873 100644
--- a/frontend/src/components/Skeleton.svelte
+++ b/frontend/src/components/Skeleton.svelte
@@ -30,44 +30,3 @@
{/each}
{/if}
-
-
diff --git a/frontend/src/components/SsoIcon.svelte b/frontend/src/components/SsoIcon.svelte
index c879a7f..8cdfc41 100644
--- a/frontend/src/components/SsoIcon.svelte
+++ b/frontend/src/components/SsoIcon.svelte
@@ -44,9 +44,3 @@
{/if}
-
-
diff --git a/frontend/src/components/Toast.svelte b/frontend/src/components/Toast.svelte
index ab77c00..a033c39 100644
--- a/frontend/src/components/Toast.svelte
+++ b/frontend/src/components/Toast.svelte
@@ -7,18 +7,6 @@
dismissToast(id)
}
- function getIcon(type: Toast['type']): string {
- switch (type) {
- case 'success':
- return '✓'
- case 'error':
- return '!'
- case 'warning':
- return '⚠'
- case 'info':
- return 'i'
- }
- }
{#if toasts.length > 0}
@@ -26,11 +14,9 @@
{#each toasts as toast (toast.id)}
-
{getIcon(toast.type)}
{toast.message}