fixup! feat(trading): enhance country selection modal with search functionality and improved UI

This commit is contained in:
Lukas 'Sherpa' Werner
2026-02-19 15:38:38 +01:00
parent 190a3d0e22
commit 1ee0ba0b82

View File

@@ -32,7 +32,9 @@ export const TradingFormInputCountry = ({ label }: TradingFormInputDefaultProps)
</Row>
</Row>
</GhostContainer>
{isModalOpen && <CountrySelectModal onClose={() => setIsModalOpen(false)} heading={label} />}
{isModalOpen && (
<CountrySelectModal onClose={() => setIsModalOpen(false)} heading={label} />
)}
</>
);
};