Skip to content

Commit

Permalink
fix: subtasks raised
Browse files Browse the repository at this point in the history
  • Loading branch information
lubega-deriv committed Aug 30, 2024
1 parent f912458 commit 9edc4bc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ const SentEmailContent: FC<SentEmailContentProps> = ({
<ActionScreen
actionButtons={
<Button
color='primary-transparent'
disabled={shouldShowResendEmailReasons}
onClick={() => {
setShouldShowResendEmailReasons(true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const WalletAddedSuccessFooter = ({ onPrimaryButtonClick, onSecondaryButtonClick
return (
<div className='wallets-add-more__success-footer'>
<WalletButtonGroup isFlex isFullWidth>
<Button onClick={onSecondaryButtonClick} variant='outlined'>
<Button borderWidth='sm' color='black' onClick={onSecondaryButtonClick} variant='outlined'>
<Localize i18n_default_text='Maybe later' />
</Button>
<Button onClick={onPrimaryButtonClick}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,13 @@ const MT5ChangeInvestorPasswordInputsScreen: React.FC<TProps> = ({ sendEmail, se
>
<Localize i18n_default_text='Change investor password' />
</Button>
<Button onClick={sendEmail} size='lg' textSize={buttonTextSize} variant='ghost'>
<Button
color='primary-transparent'
onClick={sendEmail}
size='lg'
textSize={buttonTextSize}
variant='ghost'
>
<Localize i18n_default_text='Create or reset investor password' />
</Button>
</div>
Expand Down

0 comments on commit 9edc4bc

Please sign in to comment.