fix: apply DebugName wrappers to tab components (BUG 7 partial) and other updates
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 1m12s

This commit is contained in:
2026-05-07 13:32:04 +02:00
parent 32a86c3e62
commit 482320b519
17 changed files with 603 additions and 12 deletions
+3
View File
@@ -14,6 +14,7 @@ import {
EquipmentCrafter,
} from '@/components/game/crafting';
import { useCombatStore, useCraftingStore } from '@/lib/game/stores';
import { DebugName } from '@/lib/game/debug-context';
import { useGameToast } from '@/components/game/GameToast';
export function CraftingTab() {
@@ -52,6 +53,7 @@ export function CraftingTab() {
};
return (
<DebugName name="CraftingTab">
<div className="space-y-4 max-w-full overflow-x-hidden">
{/* Top Sub-Tabs: Fabricate / Enchant */}
<GameCard variant="default" className="p-4">
@@ -252,6 +254,7 @@ export function CraftingTab() {
</GameCard>
)}
</div>
</DebugName>
);
}