Skip to content

Commit

Permalink
fix: juris admin demographics (#3980)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgarrye authored Mar 27, 2024
1 parent 9dd9a87 commit ab12587
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ const ApplicationsList = () => {
profile?.userRoles?.isPartner && listingJurisdiction?.enablePartnerDemographics
const { onExport, csvExportLoading, csvExportError, csvExportSuccess } = useApplicationsExport(
listingId,
(profile?.userRoles?.isAdmin || includeDemographicsPartner) ?? false
(profile?.userRoles?.isAdmin ||
profile?.userRoles?.isJurisdictionalAdmin ||
includeDemographicsPartner) ??
false
)

const countyCode = listingDto?.jurisdictions.name
Expand Down

0 comments on commit ab12587

Please sign in to comment.