fix: remove leftover

This commit is contained in:
2026-06-18 22:36:02 -03:00
parent 3b4817a8e1
commit c2e2f4c216
-1
View File
@@ -131,7 +131,6 @@ export const useInventoryStore = create<InventoryState>()(
unlockedDLCs: Array.isArray(profile.unlockedDLCs) ? profile.unlockedDLCs : state.unlockedDLCs,
items: (profile.items && typeof profile.items === 'object') ? profile.items : state.items,
offerings: (profile.offerings && typeof profile.offerings === 'object') ? profile.offerings : state.offerings,
unlockAllDLCs: typeof profile.unlockAllDLCs === 'boolean' ? profile.unlockAllDLCs : state.unlockAllDLCs,
};
})
}),