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

Heading on contact details view in popup should say "Details" instead of contact name (#12380)

* Change contact details view in popup to show "Details" instead of contact's name

* Changed contact details view in popup
This commit is contained in:
VSaric 2021-11-04 07:58:50 +01:00 committed by GitHub
parent 59054519ba
commit f98b21e750
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,7 +101,7 @@ class SettingsPage extends PureComponent {
let titleText;
if (isPopup && addressName) {
titleText = addressName;
titleText = t('details');
} else if (pathnameI18nKey && isPopup) {
titleText = t(pathnameI18nKey);
} else {