Task 2: DebugTab Update - add Invoker Debugging Buttons for Pacts

This commit is contained in:
Refactoring Agent
2026-04-26 12:52:48 +02:00
parent 229cb16c5d
commit 9f029d93e1
3 changed files with 213 additions and 1 deletions
+3 -1
View File
@@ -6,7 +6,8 @@ import {
SkillDebug,
ElementDebug,
AttunementDebug,
GolemDebug
GolemDebug,
PactDebug
} from '@/components/game/debug';
interface DebugTabProps {
@@ -25,6 +26,7 @@ export function DebugTab({ store }: DebugTabProps) {
<SkillDebug store={store} />
<GolemDebug store={store} />
<PactDebug />
</div>
);
}