Skip to content

Commit

Permalink
Merge pull request #290 from virtualidentityag/fix/OB-5122-postcodes-…
Browse files Browse the repository at this point in the history
…range

fix: when zip code is same in from and to OB-5126
  • Loading branch information
CarlosSoares authored Jun 1, 2023
2 parents 682dafd + b7730bf commit b412a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/agency/getAgencyPostCodeRange.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const getAgencyPostCodeRange = (id: string) => {
const items = el.split('-');
result.push({
from: items[0],
until: items[1],
until: items[1] || items[0],
});
});

Expand Down

0 comments on commit b412a58

Please sign in to comment.