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
@@ -1,6 +1,7 @@
'use client';
import { GameStateDebug } from '@/components/game/debug/GameStateDebug';
import { DebugName } from '@/lib/game/debug-context';
import {
SkillDebug,
AttunementDebug,
@@ -11,6 +12,7 @@ import {
export function DebugTab() {
return (
<DebugName name="DebugTab">
<div className="space-y-4">
<GameStateDebug />
@@ -23,6 +25,7 @@ export function DebugTab() {
<GolemDebug />
<PactDebug />
</div>
</DebugName>
);
}