Skip to content

Commit

Permalink
LPS-152229 Remove the empty return that introduced a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kresimir-coko committed May 12, 2022
1 parent 813eb54 commit 6e662df
Showing 1 changed file with 0 additions and 4 deletions.
Expand Up @@ -15,10 +15,6 @@
export default function getSelectedOptionValues(select, delimiter = ',') {
const optionsArray = Array.from(select.getElementsByTagName('option'));

if (!optionsArray.length) {
return;
}

return optionsArray
.reduce((previous, item) => {
const {value} = item;
Expand Down

0 comments on commit 6e662df

Please sign in to comment.