fix(inventar): import FeedbackPage from @manacore/feedback, not shared-ui

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-30 21:56:19 +02:00
parent b737240ec1
commit 0d6005dbcc
23 changed files with 213 additions and 42 deletions

View file

@ -10,7 +10,7 @@
import { theme } from '$lib/stores/theme';
import { setLocale, supportedLocales } from '$lib/i18n';
import { SyncIndicator } from '@manacore/shared-ui';
import { getPillAppItems } from '@manacore/shared-branding';
import { getPillAppItems, getManaApp } from '@manacore/shared-branding';
import { AuthGate, GuestWelcomeModal } from '@manacore/shared-auth-ui';
import { shouldShowGuestWelcome } from '@manacore/shared-auth-ui';
import { timesStore } from '$lib/data/local-store';
@ -83,7 +83,14 @@
}
</script>
<AuthGate {authStore} {goto} allowGuest={true} onReady={handleAuthReady}>
<AuthGate
{authStore}
{goto}
allowGuest={true}
onReady={handleAuthReady}
requiredTier={getManaApp('times')?.requiredTier}
appName={getManaApp('times')?.name}
>
<div class="flex min-h-screen flex-col">
<!-- Top Navigation -->
{#if showNav}