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
@@ -18,6 +18,7 @@ import { UpgradeEffectsSection } from '../stats/UpgradeEffectsSection';
// Modular stores
import { useCombatStore, useManaStore, useSkillStore, usePrestigeStore, useGameStore } from '@/lib/game/stores';
import { useCraftingStore } from '@/lib/game/stores/craftingStore';
import { DebugName } from '@/lib/game/debug-context';
export function StatsTab() {
// Get state from modular stores
@@ -116,6 +117,7 @@ export function StatsTab() {
})();
return (
<DebugName name="StatsTab">
<div className="space-y-4">
{/* Mana Stats */}
<ManaStatsSection
@@ -322,6 +324,7 @@ export function StatsTab() {
</CardContent>
</Card>
</div>
</DebugName>
);
}