From 46019ade373dfdb36706ffa76987c22314ea32fb Mon Sep 17 00:00:00 2001 From: awojciak Date: Tue, 14 Nov 2023 10:18:44 +0100 Subject: [PATCH] fixed --- src/containers/NewPositionWrapper/NewPositionWrapper.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/containers/NewPositionWrapper/NewPositionWrapper.tsx b/src/containers/NewPositionWrapper/NewPositionWrapper.tsx index 8f398f2bc..6af3d0e9c 100644 --- a/src/containers/NewPositionWrapper/NewPositionWrapper.tsx +++ b/src/containers/NewPositionWrapper/NewPositionWrapper.tsx @@ -418,7 +418,8 @@ export const NewPositionWrapper = () => { dispatch( poolsActions.getPoolData( new Pair(tokens[tokenA].assetAddress, tokens[tokenB].assetAddress, { - fee: ALL_FEE_TIERS_DATA[feeTierIndex].tier.fee + fee: ALL_FEE_TIERS_DATA[feeTierIndex].tier.fee, + tickSpacing: ALL_FEE_TIERS_DATA[feeTierIndex].tier.tickSpacing }) ) )