From 74b824d0a58a40757b537e045b6ca6cbd1d96c1c Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Sun, 30 Nov 2025 00:40:54 +0100 Subject: [PATCH] fix(manacore): use manaHref for proper Mana icon in user dropdown MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move Mana link from navItems to manaHref prop for consistent display with the special Mana icon (water drop) in the user dropdown, matching the Chat app pattern. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- apps/manacore/apps/web/src/routes/(app)/+layout.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/manacore/apps/web/src/routes/(app)/+layout.svelte b/apps/manacore/apps/web/src/routes/(app)/+layout.svelte index 76427f9ea..bf0ec1668 100644 --- a/apps/manacore/apps/web/src/routes/(app)/+layout.svelte +++ b/apps/manacore/apps/web/src/routes/(app)/+layout.svelte @@ -53,7 +53,6 @@ // Navigation items for ManaCore const navItems: PillNavItem[] = [ { href: '/dashboard', label: 'Dashboard', icon: 'home' }, - { href: '/mana', label: 'Mana', icon: 'fire' }, { href: '/credits', label: 'Credits', icon: 'creditCard' }, { href: '/feedback', label: 'Feedback', icon: 'chat' }, { href: '/profile', label: 'Profil', icon: 'user' }, @@ -175,6 +174,7 @@ {appItems} {userEmail} settingsHref="/settings" + manaHref="/mana" profileHref="/profile" />