- Bug-Fix: use normal keyboardType instead of url keyboardType for input field in add-source view

This commit is contained in:
Magesh K
2025-02-24 20:09:14 +05:30
parent a5aec978bb
commit 84bb1f7c08

View File

@@ -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