Linting fixes

This commit is contained in:
efarooqui
2020-10-06 10:31:17 -07:00
parent 233ddbfc99
commit 9dd5eabd3a
6 changed files with 13 additions and 84 deletions

View File

@@ -9,7 +9,7 @@ function ClusterEvents ({
onSelect,
svg,
clusters,
numClusters,
numClusters
}) {
function renderClusterBySize (cluster) {
const { point_count: pointCount, cluster_id: clusterId } = cluster.properties
@@ -20,7 +20,7 @@ function ClusterEvents ({
fill: colors.fallbackEventColor,
stroke: colors.darkBackground,
strokeWidth: 0,
fillOpacity: calcOpacity(pointCount),
fillOpacity: calcOpacity(pointCount)
})
return (
@@ -39,7 +39,6 @@ function ClusterEvents ({
)
}
function renderCluster (cluster) {
/**
{