Skip to content

Commit

Permalink
feat(16355): pr fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nattallius committed May 29, 2024
1 parent 7c6d03a commit f221e57
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ export const AdvancedAnalyticsContainer = () => {
),
ready: (dataList) => {
const geometry = focusedGeometry?.geometry as GeoJSON.FeatureCollection;
if (geometry.features && geometry.features.length == 0) {
if (geometry.features && geometry.features.length === 0) {
return <AnalyticsEmptyState />;
}
if (dataList?.length == 0) {
if (dataList?.length === 0) {
return <AdvancedAnalyticsEmptyState />;
}
return <AdvancedAnalyticsDataList data={dataList} />;
Expand Down

0 comments on commit f221e57

Please sign in to comment.