added an update checker button for library (#172)

* added an update checker button for library

* fixed import path

* fixed progress props to not be inline

* added error handling

* fixed linting issue
This commit is contained in:
amr
2022-04-18 10:26:36 +02:00
committed by GitHub
parent a0796d2a05
commit 365f28fee5
3 changed files with 78 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ import LibraryOptions from 'components/library/LibraryOptions';
import LibraryMangaGrid from 'components/library/LibraryMangaGrid';
import AppbarSearch from 'components/util/AppbarSearch';
import { useQueryParam, NumberParam } from 'use-query-params';
import UpdateChecker from '../components/library/UpdateChecker';
interface IMangaCategory {
category: ICategory
@@ -31,6 +32,7 @@ export default function Library() {
<>
<AppbarSearch />
<LibraryOptions />
<UpdateChecker />
</>,
);
}, []);