Skip to content

Commit

Permalink
chore: prettify
Browse files Browse the repository at this point in the history
  • Loading branch information
saadanzari committed Nov 14, 2024
1 parent 547cf30 commit 1c6f19f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/pages/OSPConsent/CompanyDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,10 @@ export const CompanyDetails = ({
[t('osp.city'), companyDetails?.city ?? ''],
[t('osp.region'), companyDetails?.region ?? ''],
[t('osp.country'), companyDetails?.countryAlpha2Code ?? ''],
...(companyDetails?.uniqueIds?.map((id) =>
[checkUniqueIdType(id.type as string), id.value]
) ?? []),
...(companyDetails?.uniqueIds?.map((id) => [
checkUniqueIdType(id.type as string),
id.value,
]) ?? []),
],
}

Expand Down

0 comments on commit 1c6f19f

Please sign in to comment.