From 7766bedfd1ca451fd62da148ae687225fb5fd75f Mon Sep 17 00:00:00 2001 From: Bastian Meissner Date: Sun, 24 May 2020 15:25:29 +0200 Subject: [PATCH] Fixed searchbar again --- src/components/searchBar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/searchBar.js b/src/components/searchBar.js index 57e4290..1e29946 100644 --- a/src/components/searchBar.js +++ b/src/components/searchBar.js @@ -56,7 +56,7 @@ const SearchBar = () => { if (query.split(' ')[0].includes('/')) { handleQueryWithProvider(query); } else { - //window.location = 'https://google.com/search?q=' + query; + window.location = 'https://google.com/search?q=' + query; } e.preventDefault();