Skip to content

Commit

Permalink
backend: run npm format
Browse files Browse the repository at this point in the history
  • Loading branch information
alanorth committed Nov 29, 2023
1 parent effc403 commit 95c5d4f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions backend/src/shared/services/formater.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,7 @@ export class FormatService {
if (addOn) {
if (typeof value === 'string' || value instanceof String) {
if (addOn == 'country')
value = value
.split(',')
.map((d) => this.mapIsoToCountry(d.trim()));
value = value.split(',').map((d) => this.mapIsoToCountry(d.trim()));
if (addOn == 'language')
value = value
.split(',')
Expand Down

0 comments on commit 95c5d4f

Please sign in to comment.