diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json
index 8a042ef7b..01280d57f 100644
--- a/app/_locales/en/messages.json
+++ b/app/_locales/en/messages.json
@@ -3109,7 +3109,7 @@
"message": "Decoded by Truffle"
},
"transactionDecodingAccreditationVerified": {
- "message": "Verified contract on"
+ "message": "Verified contract on $1"
},
"transactionDecodingUnsupportedNetworkError": {
"message": "Transaction decoding is not available for chainId $1"
diff --git a/ui/components/app/transaction-decoding/components/ui/accreditation/accreditation.component.js b/ui/components/app/transaction-decoding/components/ui/accreditation/accreditation.component.js
index c08101858..fd1d75cd8 100644
--- a/ui/components/app/transaction-decoding/components/ui/accreditation/accreditation.component.js
+++ b/ui/components/app/transaction-decoding/components/ui/accreditation/accreditation.component.js
@@ -27,22 +27,24 @@ const Accreditation = ({ fetchVia, address }) => {
className="accreditation__prefix"
boxProps={{ margin: 0 }}
>
- {t('transactionDecodingAccreditationVerified')}
+ {t('transactionDecodingAccreditationVerified', [
+ ,
+ ])}
-
{t('transactionDecodingAccreditationDecoded')}
diff --git a/ui/components/app/transaction-decoding/components/ui/accreditation/index.scss b/ui/components/app/transaction-decoding/components/ui/accreditation/index.scss
index 4131c38da..efc4af751 100644
--- a/ui/components/app/transaction-decoding/components/ui/accreditation/index.scss
+++ b/ui/components/app/transaction-decoding/components/ui/accreditation/index.scss
@@ -10,14 +10,15 @@
&__info {
color: $ui-black;
display: flex;
+ flex-flow: column;
flex-wrap: wrap;
}
&__link.btn-link {
@include H7;
+ display: inherit;
padding: 0 4px;
- width: auto;
}
}