Skip to content

Commit

Permalink
fix: properties of element not removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas0912 committed Dec 19, 2024
1 parent ce2eb6b commit f353031
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/components/Map/IpcMap/IpcChoropleth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,7 @@ function IpcChoropleth({
{selectedCountryId && (
<IpcAccordion countryData={countryData} countryName={selectedCountryName} loading={isLoadingCountry} />
)}
{ipcRegionData && (
<IpcCountryChoropleth
regionIpcData={ipcRegionData}
countryData={countryData}
countryName={selectedCountryName}
/>
)}
{ipcRegionData && <IpcCountryChoropleth regionIpcData={ipcRegionData} />}
</>
);
}
Expand Down

0 comments on commit f353031

Please sign in to comment.