diff --git a/apps/mana/apps/web/src/lib/components/onboarding/steps/CompleteStep.svelte b/apps/mana/apps/web/src/lib/components/onboarding/steps/CompleteStep.svelte index a9e2b2870..72a47038f 100644 --- a/apps/mana/apps/web/src/lib/components/onboarding/steps/CompleteStep.svelte +++ b/apps/mana/apps/web/src/lib/components/onboarding/steps/CompleteStep.svelte @@ -50,7 +50,7 @@
@@ -60,8 +60,8 @@
-
Alle Apps
-
Entdecke mehr
+
Workbench
+
Deine Apps entdecken
diff --git a/apps/mana/apps/web/src/lib/components/settings/sections/SecuritySection.svelte b/apps/mana/apps/web/src/lib/components/settings/sections/SecuritySection.svelte index 7fb8c6d60..3faac2ef6 100644 --- a/apps/mana/apps/web/src/lib/components/settings/sections/SecuritySection.svelte +++ b/apps/mana/apps/web/src/lib/components/settings/sections/SecuritySection.svelte @@ -51,6 +51,7 @@ passkeys = await authStore.listPasskeys(); }} primaryColor="hsl(var(--color-primary))" + showTitle={false} /> @@ -65,6 +66,7 @@ sessionsLoading = false; }} primaryColor="hsl(var(--color-primary))" + showTitle={false} /> @@ -75,6 +77,7 @@ onDisable={(password) => authStore.disableTwoFactor(password)} onGenerateBackupCodes={(password) => authStore.generateBackupCodes(password)} primaryColor="hsl(var(--color-primary))" + showTitle={false} /> @@ -92,5 +95,6 @@ securityEventsLoading = false; }} primaryColor="hsl(var(--color-primary))" + showTitle={false} /> diff --git a/packages/shared-auth-ui/src/components/TwoFactorSetup.svelte b/packages/shared-auth-ui/src/components/TwoFactorSetup.svelte index 1548676ba..87872fc4b 100644 --- a/packages/shared-auth-ui/src/components/TwoFactorSetup.svelte +++ b/packages/shared-auth-ui/src/components/TwoFactorSetup.svelte @@ -39,6 +39,7 @@ password: string ) => Promise<{ success: boolean; backupCodes?: string[]; error?: string }>; primaryColor?: string; + showTitle?: boolean; translations?: Partial; } @@ -48,6 +49,7 @@ onDisable, onGenerateBackupCodes, primaryColor = '#6366f1', + showTitle = true, translations = {}, }: Props = $props(); @@ -168,7 +170,7 @@
{#if view === 'status'}
-

{t.title}

+ {#if showTitle}

{t.title}

{/if}
{enabled ? t.statusEnabled : t.statusDisabled} diff --git a/packages/shared-tailwind/src/sources.css b/packages/shared-tailwind/src/sources.css index f3b3375b5..c16648473 100644 --- a/packages/shared-tailwind/src/sources.css +++ b/packages/shared-tailwind/src/sources.css @@ -22,5 +22,4 @@ @source "../../shared-auth-ui/src"; @source "../../shared-branding/src"; @source "../../shared-theme-ui/src"; -@source "../../subscriptions/src"; @source "../../credits/src";