0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 13:39:22 +01:00

fix import sort order

This commit is contained in:
Thomas Obermüller 2024-11-19 15:27:03 +01:00
parent 62d50304e3
commit 49fa19f8e7
No known key found for this signature in database

View File

@ -1,6 +1,7 @@
import './WorldMap.scss'
import { useActions, useValues } from 'kea'
import { BRAND_BLUE_HSL, gradateColor } from 'lib/utils'
import React, { HTMLProps, useEffect, useRef } from 'react'
import { formatAggregationAxisValue } from 'scenes/insights/aggregationAxisFormat'
import { insightLogic } from 'scenes/insights/insightLogic'
@ -16,7 +17,6 @@ import { ensureTooltip } from '../LineGraph/LineGraph'
import { countryCodeToFlag, countryCodeToName } from './countryCodes'
import { countryVectors } from './countryVectors'
import { worldMapLogic } from './worldMapLogic'
import { BRAND_BLUE_HSL, gradateColor } from 'lib/utils'
/** The saturation of a country is proportional to its value BUT the saturation has a floor to improve visibility. */
const SATURATION_FLOOR = 0.2