From 6883a556bf635788c23a20520c83b086de31cd85 Mon Sep 17 00:00:00 2001 From: austinried <4966622+austinried@users.noreply.github.com> Date: Wed, 12 Jan 2022 09:25:45 +0900 Subject: [PATCH] fix boolean --- app/screens/ServerView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/screens/ServerView.tsx b/app/screens/ServerView.tsx index 14b9a01..bb68161 100644 --- a/app/screens/ServerView.tsx +++ b/app/screens/ServerView.tsx @@ -194,7 +194,7 @@ const ServerView: React.FC<{ selectionColor={colors.text.secondary} textContentType="URL" placeholder="http://demo.navidrome.org" - autoCorrect="false" + autoCorrect={false} autoCapitalize="none" value={address} onChangeText={setAddress}