From 7f6589689588a41c78ca862ea8e261120d46a036 Mon Sep 17 00:00:00 2001 From: Aiden Vigue Date: Wed, 7 Jul 2021 19:58:41 -0400 Subject: [PATCH] build fiddy six that'll be tree fiddy. --- JellyfinPlayer/ConnectToServerView.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/JellyfinPlayer/ConnectToServerView.swift b/JellyfinPlayer/ConnectToServerView.swift index 836beeeb..e1ffd7cf 100644 --- a/JellyfinPlayer/ConnectToServerView.swift +++ b/JellyfinPlayer/ConnectToServerView.swift @@ -105,8 +105,8 @@ struct ConnectToServerView: View { } } } else { - Section(header: Text("Manual Connection")) { - TextField("Jellyfin Server URL", text: $uri) + Section(header: Text("Connect Manually")) { + TextField("Server URL", text: $uri) .disableAutocorrection(true) .autocapitalization(.none) Button { @@ -115,9 +115,9 @@ struct ConnectToServerView: View { HStack { Text("Connect") Spacer() - } - if viewModel.isLoading { - ProgressView() + if viewModel.isLoading { + ProgressView() + } } } .disabled(viewModel.isLoading || uri.isEmpty)