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
+5 -1
View File
@@ -67,6 +67,8 @@ export function GolemancyTab() {
if (!isUnlocked) {
// Locked golem card
return (
<DebugName name="GolemancyTab">
<GameCard key={golemId} variant="sunken" className="opacity-60">
<div className="pb-2">
<h3 className="text-sm font-semibold flex items-center gap-2">
@@ -86,7 +88,8 @@ export function GolemancyTab() {
)}
</div>
</GameCard>
);
</DebugName>);
}
return (
@@ -315,3 +318,4 @@ export function GolemancyTab() {
}
GolemancyTab.displayName = "GolemancyTab";
import { DebugName } from '@/lib/game/debug-context';