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

Fix #17162 - Add NFT disclaimer to details page (#17266)

This commit is contained in:
David Walsh 2023-01-18 08:37:16 -06:00 committed by GitHub
parent 20cbe44d63
commit 37174d749c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -2285,6 +2285,9 @@
"nft": {
"message": "NFT"
},
"nftDisclaimer": {
"message": "Disclaimer: MetaMask pulls the media file from the source url. This url sometimes is changed by the marketplace the NFT was minted on."
},
"nftTokenIdPlaceholder": {
"message": "Enter the token id"
},

View File

@ -313,6 +313,9 @@ export default function CollectibleDetails({ collectible }) {
</Box>
</Box>
{inPopUp ? renderSendButton() : null}
<Typography color={COLORS.TEXT_ALTERNATIVE} variant={TYPOGRAPHY.H7}>
{t('nftDisclaimer')}
</Typography>
</Box>
</Box>
</>