We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d131993 commit 4979391Copy full SHA for 4979391
1 file changed
src/components/Elements/SearchBarWithLogo/SearchBarWithLogo.tsx
@@ -6,7 +6,7 @@ import './SearchBarWithLogo.css'
6
export const SearchBarWithLogo = () => {
7
const { searchEngine } = useUserPreferences()
8
const userSearchEngine = SUPPORTED_SEARCH_ENGINES.find(
9
- (srchEngn) => srchEngn.label === searchEngine
+ (srchEngn) => srchEngn.label.toLocaleLowerCase() === searchEngine.toLocaleLowerCase()
10
)
11
12
return (
0 commit comments