|
|
@ -18,9 +18,10 @@ export default class StepConfirmAddress extends PureComponent<StepProps> { |
|
|
|
invariant(device, 'No device given') |
|
|
|
return ( |
|
|
|
<Container> |
|
|
|
<TrackPage category="Receive" name="Step3" /> |
|
|
|
<TrackPage category="Receive Flow" name="Step 3" /> |
|
|
|
{isAddressVerified === false ? ( |
|
|
|
<Fragment> |
|
|
|
<TrackPage category="Receive Flow" name="Step 3 Address Not Verified Error" /> |
|
|
|
<Title> |
|
|
|
<TranslatedError error={verifyAddressError} /> |
|
|
|
</Title> |
|
|
@ -50,10 +51,13 @@ export function StepConfirmAddressFooter({ t, transitionTo, onRetry }: StepProps |
|
|
|
// This will be displayed only if user rejected address
|
|
|
|
return ( |
|
|
|
<Fragment> |
|
|
|
<Button>{t('app:receive.steps.confirmAddress.support')}</Button> |
|
|
|
<Button event="Receive Flow Step 3 Contact Us Clicked"> |
|
|
|
{t('app:receive.steps.confirmAddress.support')} |
|
|
|
</Button> |
|
|
|
<Button |
|
|
|
ml={2} |
|
|
|
primary |
|
|
|
event="Receive Flow Step 3 Retry Clicked" |
|
|
|
onClick={() => { |
|
|
|
onRetry() |
|
|
|
transitionTo('device') |
|
|
|