Skip to content

Commit

Permalink
chore: update toast message
Browse files Browse the repository at this point in the history
  • Loading branch information
gloriateodoro committed Jun 10, 2022
1 parent be27f85 commit 387438e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ export const CertificateStatus: React.FC<Properties> = ({ updateDomain, customDo
}
);

toast({ title: 'IP propagado!', status: 'success', duration: 4000, isClosable: true });
toast({ title: 'Tudo certo!', description: 'Ip verificado', status: 'success', duration: 4000, isClosable: true });
} else {
toast({ title: 'IP não propagado!', status: 'error', duration: 4000, isClosable: true })
toast({ title: 'Ops, IP não verificado', description: 'Aguarde mais alguns minutos e tente novamente', status: 'error', duration: 4000, isClosable: true })
}
}

Expand Down Expand Up @@ -131,4 +131,4 @@ export const CertificateStatus: React.FC<Properties> = ({ updateDomain, customDo
);
}

export default connect(undefined, { updateDomain: dnsControlActions.updateDomain })(CertificateStatus);
export default connect(undefined, { updateDomain: dnsControlActions.updateDomain })(CertificateStatus);

0 comments on commit 387438e

Please sign in to comment.