Fix app onboarding on Safari

This commit is contained in:
Cohee 2024-07-04 23:37:18 +03:00
parent 6e86ab07dd
commit 7883d091be
1 changed files with 1 additions and 1 deletions

View File

@ -6154,7 +6154,7 @@ async function doOnboarding(avatarId) {
template.find('input[name="enable_simple_mode"]').on('input', function () {
simpleUiMode = $(this).is(':checked');
});
let userName = await callGenericPopup(template, POPUP_TYPE.INPUT, currentUser?.name || name1, { rows: 2 });
let userName = await callGenericPopup(template, POPUP_TYPE.INPUT, currentUser?.name || name1, { rows: 2, wide: true, large: true });
if (userName) {
userName = userName.replace('\n', ' ');