From eae04c9382644dfa4c91bfa84a60aed5c240b6f3 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Sat, 10 Dec 2022 15:51:21 +0100 Subject: [PATCH] Sign in required fixes --- Shared/Views/SignInRequiredView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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() } }