Added warning about unsupported prefix. Added support for Spotify search. Edited README file

This commit is contained in:
unknown
2021-06-25 10:42:44 +02:00
parent aec00982ba
commit 0c3a27febd
9 changed files with 73 additions and 38 deletions

View File

@@ -22,7 +22,7 @@ import classes from './Home.module.css';
import AppGrid from '../Apps/AppGrid/AppGrid';
import BookmarkGrid from '../Bookmarks/BookmarkGrid/BookmarkGrid';
import WeatherWidget from '../Widgets/WeatherWidget/WeatherWidget';
import SearchBox from '../SearchBox/SearchBox';
import SearchBar from '../SearchBar/SearchBar';
// Functions
import { greeter } from './functions/greeter';
@@ -89,7 +89,7 @@ const Home = (props: ComponentProps): JSX.Element => {
return (
<Container>
{searchConfig('hideSearch', 0) !== 1
? <SearchBox />
? <SearchBar />
: <div></div>
}