diff --git a/iOSClient/Account Settings/NCAccountSettingsModel.swift b/iOSClient/Account Settings/NCAccountSettingsModel.swift index 668fba7a5c..7c72270581 100644 --- a/iOSClient/Account Settings/NCAccountSettingsModel.swift +++ b/iOSClient/Account Settings/NCAccountSettingsModel.swift @@ -143,7 +143,7 @@ class NCAccountSettingsModel: ObservableObject, ViewOnAppearHandling { /// Function to know the height of "account" data func getTableViewHeight() -> CGFloat { guard let activeAccount else { return 0 } - var height: CGFloat = 190 + var height: CGFloat = NCGlobal.shared.capabilityUserStatusEnabled ? 190 : 220 if NCGlobal.shared.capabilityUserStatusEnabled, let tableAccount = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", activeAccount.account)) { if !tableAccount.email.isEmpty { height += 30 }