Skip to content

Commit

Permalink
Merge pull request #2611 from Amsterdam/bugfix/multiple-gebruiksdoel-bag
Browse files Browse the repository at this point in the history
Updated multiple gebruikersdoelen
  • Loading branch information
remyvdwereld authored Jun 25, 2024
2 parents c18b6e0 + 5157cb2 commit fab8301
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Residence: FC<Props> = ({ caseId }) => {

// Woning
const gebruiksdoel = hasBagData ? bagData.gebruiksdoel : undefined
const woningBestemming = gebruiksdoel && gebruiksdoel.length ? gebruiksdoel[0] : undefined
const woningBestemming = gebruiksdoel && gebruiksdoel.length ? gebruiksdoel.join(", ") : undefined
const woningGebruik = hasBagData && bagData.gebruik ? bagData.gebruik : undefined
const woningBouwlagen = hasBagData && bagData.bouwlagen ? bagData.bouwlagen : undefined
const woningEtage = hasBagData && bagData.verdieping_toegang != null ? bagData.verdieping_toegang : undefined
Expand Down

0 comments on commit fab8301

Please sign in to comment.