🔴 DisciplinesTab: broken import path @/types/disciplines — module not found
#51
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
File:
src/components/game/tabs/DisciplinesTab.tsx, line 3The path
@/types/disciplinesdoes not resolve to any file. The actual type definition lives atsrc/lib/game/types/disciplines.ts, so the correct import path is@/lib/game/types/disciplines.Impact: Build failure / module not found error at compile time. The Disciplines tab cannot load at all.
Fix: Change the import to
@/lib/game/types/disciplines.[priority: 5] CRASH/BLOCKER — Broken import path blocks entire DisciplinesTab feature chain (#52-56 depend on this).
Starting work on #51 — root cause of DisciplinesTab feature chain. Investigating broken import path @/types/disciplines.
Fixed: Changed import from
@/types/disciplinesto@/lib/game/types/disciplinesin DisciplinesTab.tsx.