From 1ee0ba0b82865023a66fa29f2e11aec63ae8ab8e Mon Sep 17 00:00:00 2001 From: Lukas 'Sherpa' Werner Date: Thu, 19 Feb 2026 15:38:38 +0100 Subject: [PATCH] fixup! feat(trading): enhance country selection modal with search functionality and improved UI --- .../TradingFormInputCountry/TradingFormInputCountry.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/suite/src/views/wallet/trading/common/TradingForm/TradingFormInput/TradingFormInputCountry/TradingFormInputCountry.tsx b/packages/suite/src/views/wallet/trading/common/TradingForm/TradingFormInput/TradingFormInputCountry/TradingFormInputCountry.tsx index 8e6a41dae3..ee0ce1accd 100644 --- a/packages/suite/src/views/wallet/trading/common/TradingForm/TradingFormInput/TradingFormInputCountry/TradingFormInputCountry.tsx +++ b/packages/suite/src/views/wallet/trading/common/TradingForm/TradingFormInput/TradingFormInputCountry/TradingFormInputCountry.tsx @@ -32,7 +32,9 @@ export const TradingFormInputCountry = ({ label }: TradingFormInputDefaultProps) - {isModalOpen && setIsModalOpen(false)} heading={label} />} + {isModalOpen && ( + setIsModalOpen(false)} heading={label} /> + )} ); };