🐛 fix(third-party-accounts): Remove mobile display logic from third-party accounts component

This commit is contained in:
web@ppanel 2025-02-10 23:12:43 +07:00
parent 012e83a25c
commit b4946f7a06

View File

@ -244,12 +244,6 @@ export default function ThirdPartyAccounts() {
case 'email':
displayValue = isEditing ? currentValue : method?.auth_identifier || '';
break;
case 'mobile':
displayValue =
method?.area_code && method?.auth_identifier
? `${method?.area_code || ''} ${method?.auth_identifier || ''}`
: t(`${account.id}.description`);
break;
default:
displayValue = method?.auth_identifier || t(`${account.id}.description`);
}