diff --git a/frontend/components/Profile/ProfileSettings.tsx b/frontend/components/Profile/ProfileSettings.tsx index 3332a64..127a5d3 100644 --- a/frontend/components/Profile/ProfileSettings.tsx +++ b/frontend/components/Profile/ProfileSettings.tsx @@ -1441,7 +1441,8 @@ const ProfileSettings: React.FC = ({ type="text" name="telegram_allowed_users" value={ - formData.telegram_allowed_users || '' + formData.telegram_allowed_users || + '' } onChange={handleChange} placeholder="@username1, 123456789, @username2" @@ -1456,7 +1457,10 @@ const ProfileSettings: React.FC = ({

- {t('profile.examples', 'Examples:')} + {t( + 'profile.examples', + 'Examples:' + )}

  • @@ -1464,21 +1468,30 @@ const ProfileSettings: React.FC = ({ @alice, @bob {' - '} - {t('profile.exampleUsernames', 'Allow specific usernames')} + {t( + 'profile.exampleUsernames', + 'Allow specific usernames' + )}
  • 123456789, 987654321 {' - '} - {t('profile.exampleUserIds', 'Allow specific user IDs')} + {t( + 'profile.exampleUserIds', + 'Allow specific user IDs' + )}
  • @alice, 123456789 {' - '} - {t('profile.exampleMixed', 'Mix usernames and user IDs')} + {t( + 'profile.exampleMixed', + 'Mix usernames and user IDs' + )}