diff --git a/Shared/Views/SignInRequiredView.swift b/Shared/Views/SignInRequiredView.swift index 8f153e8f..0b13b1f5 100644 --- a/Shared/Views/SignInRequiredView.swift +++ b/Shared/Views/SignInRequiredView.swift @@ -34,14 +34,15 @@ struct SignInRequiredView: View { Group { if instances.isEmpty { - Text("You need to create an instance and accounts\nto access \(title) section") + Text("You need to create an instance and accounts to access \(title) section") } else { - Text("You need to select an account\nto access \(title) section") + Text("You need to select an account to access \(title) section") } } .multilineTextAlignment(.center) .foregroundColor(.secondary) .font(.title3) + .padding(.horizontal, 10) .padding(.vertical) #if !os(tvOS) @@ -65,6 +66,5 @@ struct SignInRequiredView_Previews: PreviewProvider { Text("Only when signed in") } } - .injectFixtureEnvironmentObjects() } }