diff --git a/docs/circular-deps.txt b/docs/circular-deps.txt index b33f7ec..201c6ee 100644 --- a/docs/circular-deps.txt +++ b/docs/circular-deps.txt @@ -1,4 +1,4 @@ # Circular Dependencies -Generated: 2026-05-28T10:18:57.618Z +Generated: 2026-05-28T10:28:32.589Z No circular dependencies found. ✅ diff --git a/docs/dependency-graph.json b/docs/dependency-graph.json index d4a61c3..99f37b8 100644 --- a/docs/dependency-graph.json +++ b/docs/dependency-graph.json @@ -1,6 +1,6 @@ { "_meta": { - "generated": "2026-05-28T10:18:55.814Z", + "generated": "2026-05-28T10:28:30.836Z", "description": "Import dependency graph for src/lib/game. Keys are files, values are arrays of files they import.", "usage": "To find what a file affects, search for its path in the VALUES. To find what a file depends on, look at its KEY entry." }, diff --git a/src/components/game/tabs/DisciplinesTab.tsx b/src/components/game/tabs/DisciplinesTab.tsx index d43c1bf..7363882 100644 --- a/src/components/game/tabs/DisciplinesTab.tsx +++ b/src/components/game/tabs/DisciplinesTab.tsx @@ -15,6 +15,7 @@ import { ALL_DISCIPLINES } from '@/lib/game/data/disciplines'; import { useManaStore } from '@/lib/game/stores/manaStore'; import { usePrestigeStore } from '@/lib/game/stores/prestigeStore'; import clsx from 'clsx'; +import { DebugName } from '@/components/game/debug/debug-context'; // ─── Attunement Tabs ───────────────────────────────────────────────────────── @@ -233,6 +234,7 @@ export const DisciplinesTab: React.FC = () => { const activeTab = ATTUNEMENT_TABS.find((t) => t.key === activeAttunement); return ( +
{/* Tab bar */}
@@ -307,5 +309,6 @@ export const DisciplinesTab: React.FC = () => {
Concurrent Limit: {concurrentLimit}
+
); };