diff --git a/frontend/src/components/dashboard/AppPasswordsContent.svelte b/frontend/src/components/dashboard/AppPasswordsContent.svelte
index b61d36a..326a747 100644
--- a/frontend/src/components/dashboard/AppPasswordsContent.svelte
+++ b/frontend/src/components/dashboard/AppPasswordsContent.svelte
@@ -125,13 +125,6 @@
}
return SCOPE_PRESETS.find(preset => preset.id === selectedScopePreset)?.scopes ?? undefined
}
-
- function canCreate(): boolean {
- return Boolean(
- newName.trim()
- && (selectedScopePreset !== 'custom' || normalizeScopes(customScopes))
- )
- }
@@ -162,6 +155,7 @@
{/if}
-