hide text when loading on mobile trade button

This commit is contained in:
saml33 2023-02-14 09:49:59 +11:00
parent 7d22e9b993
commit 23041e9d9b
1 changed files with 3 additions and 1 deletions

View File

@ -594,7 +594,9 @@ const AdvancedTradeForm = () => {
) : (
<div className="flex items-center space-x-2">
<Loading />
<span>{t('trade:placing-order')}</span>
<span className="hidden sm:block">
{t('trade:placing-order')}
</span>
</div>
)}
</Button>