Skip to content

Commit

Permalink
fix: #485
Browse files Browse the repository at this point in the history
  • Loading branch information
ldeluigi committed May 29, 2024
1 parent 60b1b01 commit b6feb13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/find-my-combos.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const FindMyCombos = () => {
if (deck.numberOfCards < 2) return setLookupInProgress(false);

localStorage.setItem(LOCAL_STORAGE_DECK_STORAGE_KEY, newDeckList);
localStorage.setItem(LOCAL_STORAGE_COMMANDER_STORAGE_KEY, commanderList);
localStorage.setItem(LOCAL_STORAGE_COMMANDER_STORAGE_KEY, newCommanderList);

const combos = await findMyCombosService.findFromString(newDeckList, newCommanderList, next)

Expand Down

0 comments on commit b6feb13

Please sign in to comment.