From b0d93dbc0eced1985d7c62dbaf52791cc2ad85f5 Mon Sep 17 00:00:00 2001 From: Justin Domingue Date: Fri, 16 Jul 2021 19:14:39 -0700 Subject: [PATCH] increase zoom out range (#2076) --- src/components/LiquidityChartRangeInput/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/LiquidityChartRangeInput/index.tsx b/src/components/LiquidityChartRangeInput/index.tsx index 558a54e05..1f01f24c0 100644 --- a/src/components/LiquidityChartRangeInput/index.tsx +++ b/src/components/LiquidityChartRangeInput/index.tsx @@ -22,19 +22,19 @@ const ZOOM_LEVELS: Record = { [FeeAmount.LOW]: { initialMin: 0.999, initialMax: 1.001, - min: 0.001, + min: 0.00001, max: 1.5, }, [FeeAmount.MEDIUM]: { initialMin: 0.5, initialMax: 2, - min: 0.01, + min: 0.00001, max: 20, }, [FeeAmount.HIGH]: { initialMin: 0.5, initialMax: 2, - min: 0.01, + min: 0.00001, max: 20, }, }