Skip to content

Commit

Permalink
fix bug when no parcel match
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarkowsky committed Oct 22, 2024
1 parent 1675b88 commit b88817b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions react-app/src/components/map/parcelPopup/ParcelPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,7 @@ export const ParcelPopup = (props: ParcelPopupProps) => {
</TabPanel>
<TabPanel value="2" sx={tabPanelStyle}>
<BCAssessmentDetails
data={
bcAssessmentData && bcAssessmentData.features.length
? getMatchingBcaRecord.properties
: undefined
}
data={getMatchingBcaRecord ? getMatchingBcaRecord?.properties : undefined}
isLoading={bcaLoading || xrefLoading}
width={POPUP_WIDTH}
/>
Expand Down

0 comments on commit b88817b

Please sign in to comment.