🔴 CraftingTab: stale/broken export in game/index.ts
#57
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/index.ts, line 5The file
src/components/game/crafting/index.tsxdoes not export aCraftingTab. It exports:Impact: Any import of
CraftingTabfrom@/components/gamewould fail at runtime. The crafting sub-components exist but there is no unifiedCraftingTabwrapper component.Fix: Either create a
CraftingTabcomponent in the crafting directory that composes the existing sub-components, or remove the stale export fromgame/index.ts.[priority: 5] CRASH/BLOCKER — stale/broken export in game/index.ts for CraftingTab.
Fixed: Removed stale
export { CraftingTab } from './crafting'fromgame/index.ts. The crafting barrel file exportsEnchantmentDesigner,EnchantmentPreparer,EnchantmentApplier, andEquipmentCrafter— noCraftingTabexists. No imports ofCraftingTabwere found in the codebase.