Skip to content

Commit 9c6f26c

Browse files
committed
Fixed updatePerks param order
1 parent 2bbbf9a commit 9c6f26c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/loadout-builder/loadout-builder-reducer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ function lbConfigReducer(defs: D2ManifestDefinitions) {
528528
setLoadoutParameters({ exoticArmorHash: undefined, perks: [] }),
529529
);
530530
case 'updatePerks': {
531-
const { added, removed } = action;
531+
const { removed, added } = action;
532532
return updateLoadout(state, setLoadoutPerks(removed, added));
533533
}
534534
case 'autoStatModsChanged':

0 commit comments

Comments
 (0)