Skip to content

Commit

Permalink
fix: remove unnecessary assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
vesameskanen committed Aug 14, 2023
1 parent 4185566 commit 503635e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/util/configureCountry.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/* eslint-disable no-param-reassign */
export const configureCountry = (config, countries) => {
export const configureCountry = (config, selectedCountries) => {
if (config.mainMenu.countrySelection?.length) {
const selectedCountries = countries;
const keys = Object.keys(selectedCountries);
let boundaries = config.additionalSearchParams.default['boundary.country'];
let feedIds = [...config.feedIds];
Expand Down

0 comments on commit 503635e

Please sign in to comment.