1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix retry transaction button tooltip (#9524)

The tooltip for the Retry Transaction button would be erroneously set
to display a custom block explorer, if one was set for the current
network. It now displays the intended retry transaction text in all
cases.
This commit is contained in:
Mark Stacey 2020-10-08 14:30:41 -02:30 committed by GitHub
parent 30d6ad83f7
commit 305e3ceb2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -204,7 +204,7 @@ export default class TransactionListItemDetails extends PureComponent {
</Tooltip>
{
showRetry && (
<Tooltip title={blockExplorerUrl ? t('viewOnCustomBlockExplorer', [blockExplorerUrl]) : t('retryTransaction')}>
<Tooltip title={t('retryTransaction')}>
<Button
type="raised"
onClick={this.handleRetry}