From cae3fa52b7f22e3bf00ad93a482f452cfe86a540 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Sun, 22 Dec 2019 18:55:33 +0100 Subject: [PATCH] Fix mistakenly added 'foo' --- lib/screens/githostsetup_clone_url.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/screens/githostsetup_clone_url.dart b/lib/screens/githostsetup_clone_url.dart index e22ae52c..e3ddc199 100644 --- a/lib/screens/githostsetup_clone_url.dart +++ b/lib/screens/githostsetup_clone_url.dart @@ -195,7 +195,7 @@ String _isCloneUrlValid(String value) { RegExp regExp = RegExp(r".*@.*"); if (!regExp.hasMatch(value)) { - return "Invalid Input foo"; + return "Invalid Input"; } return null;