Files
Mana-Loop/src/components/game/crafting/index.tsx
T
n8n-gitea 17b3571a18
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 1m37s
Fix: Add missing startCraftingEquipment and cancelEquipmentCrafting actions to craftingStore
- Added startCraftingEquipment action that validates and initializes equipment crafting
- Added cancelEquipmentCrafting action that cancels crafting and refunds mana
- Used CraftingEquipment functions directly instead of deprecated wrapper actions
- Updated craftingStore imports to include useManaStore and useUIStore
- Fixed crafting/index.tsx barrel file export (removed non-existent type exports)
- Fixed syntax errors in craftingStore.ts (missing commas in function params)

Fixes issue where EquipmentCrafter component couldn't find these actions on craftingStore.
2026-05-06 10:58:58 +02:00

7 lines
276 B
TypeScript

// Barrel file for crafting components
export { EnchantmentDesigner } from './EnchantmentDesigner';
export { EnchantmentPreparer } from './EnchantmentPreparer';
export { EnchantmentApplier } from './EnchantmentApplier';
export { EquipmentCrafter } from './EquipmentCrafter';