fix: apply DebugName wrappers to tab components (BUG 7 partial) and other updates
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 1m12s

This commit is contained in:
2026-05-07 13:32:04 +02:00
parent 32a86c3e62
commit 482320b519
17 changed files with 603 additions and 12 deletions
+3 -3
View File
@@ -92,7 +92,7 @@ export type CraftingStore = CraftingState & CraftingActions;
export const useCraftingStore = create<CraftingStore>()(
persist(
(set, get) => ({
(set, get) => { const startingEquipment = createStartingEquipment(); return {
// Initial state
designProgress: null,
designProgress2: null,
@@ -101,8 +101,8 @@ export const useCraftingStore = create<CraftingStore>()(
equipmentCraftingProgress: null,
enchantmentDesigns: [],
unlockedEffects: [],
equipmentInstances: {},
equippedInstances: {},
...startingEquipment,
...startingEquipment,
lootInventory: {
materials: {},
blueprints: [],