From 84bb1f7c0890264a04e571e8d91d234e3eeccca7 Mon Sep 17 00:00:00 2001 From: Magesh K <47920326+mahee96@users.noreply.github.com> Date: Mon, 24 Feb 2025 20:09:14 +0530 Subject: [PATCH] - Bug-Fix: use normal keyboardType instead of url keyboardType for input field in add-source view --- AltStore/Sources/Components/AddSourceTextFieldCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AltStore/Sources/Components/AddSourceTextFieldCell.swift b/AltStore/Sources/Components/AddSourceTextFieldCell.swift index 1a09959b..1a8af574 100644 --- a/AltStore/Sources/Components/AddSourceTextFieldCell.swift +++ b/AltStore/Sources/Components/AddSourceTextFieldCell.swift @@ -21,7 +21,7 @@ class AddSourceTextFieldCell: UICollectionViewCell self.textField.translatesAutoresizingMaskIntoConstraints = false self.textField.placeholder = "apps.sidestore.io" self.textField.textContentType = .URL - self.textField.keyboardType = .URL +// self.textField.keyboardType = .URL // we can add multiple sources now delimited by spaces/newline so we use normal keyboard not url keyboard self.textField.returnKeyType = .done self.textField.autocapitalizationType = .none self.textField.autocorrectionType = .no