From c2e2f4c216ec144a1e17d3b9100fb4ea840a422c Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 18 Jun 2026 22:36:02 -0300 Subject: [PATCH] fix: remove leftover --- store/useInventoryStore.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/store/useInventoryStore.ts b/store/useInventoryStore.ts index c3b48a3..8935101 100644 --- a/store/useInventoryStore.ts +++ b/store/useInventoryStore.ts @@ -131,7 +131,6 @@ export const useInventoryStore = create()( 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, }; }) }),