Skip to content

Commit

Permalink
Merge pull request #291 from virtualidentityag/develop
Browse files Browse the repository at this point in the history
Merge fix to release
  • Loading branch information
CarlosSoares authored Jun 1, 2023
2 parents 78049a6 + b412a58 commit debc48d
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 debc48d

Please sign in to comment.