Update zap-pay-request-form.tsx

- Remove shadow box from button
This commit is contained in:
Filemon 2024-07-23 20:39:36 -03:00
parent 13d3c65b3a
commit 6ba349138a
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ const ZapPayRequestForm = ({ account, status }: IZapPayRequestForm) => {
</div>
<Input onChange={e => setZapComment(e.target.value)} type='text' placeholder={intl.formatMessage(messages.zap_commentPlaceholder)} />
<Button className='m-auto w-auto shadow-[0_4px_rgba(18,95,139,1)]' type='submit' theme='primary' icon={require('@tabler/icons/outline/bolt.svg')} text={renderZapButtonText()} disabled={zapAmount < 1 ? true : false} />
<Button className='m-auto w-auto' type='submit' theme='primary' icon={require('@tabler/icons/outline/bolt.svg')} text={renderZapButtonText()} disabled={zapAmount < 1 ? true : false} />
</Stack>
);
};