From 3a80f821ba95fe2db5b967a7f69b139f161d859f Mon Sep 17 00:00:00 2001 From: Michal Date: Tue, 31 Oct 2023 20:48:34 +0100 Subject: [PATCH] fix(swap): Fix default tickers in limit/market price (#2857) --- .../useCases/StartSwapScreen/CreateOrder/EditLimitPrice.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/wallet-mobile/src/features/Swap/useCases/StartSwapScreen/CreateOrder/EditLimitPrice.tsx b/apps/wallet-mobile/src/features/Swap/useCases/StartSwapScreen/CreateOrder/EditLimitPrice.tsx index 4a3776c798..f034521e69 100644 --- a/apps/wallet-mobile/src/features/Swap/useCases/StartSwapScreen/CreateOrder/EditLimitPrice.tsx +++ b/apps/wallet-mobile/src/features/Swap/useCases/StartSwapScreen/CreateOrder/EditLimitPrice.tsx @@ -21,7 +21,7 @@ export const EditLimitPrice = () => { const disabled = orderData.type === 'market' const { - sellQuantity: {isTouched: isBuyTouched}, + buyQuantity: {isTouched: isBuyTouched}, sellQuantity: {isTouched: isSellTouched}, limitPrice: {displayValue: limitDisplayValue}, limitInputRef,