corrected downloadManager import

This commit is contained in:
Abhinav-grd 2021-02-17 13:36:20 +05:30
parent 64e292eb1d
commit b786f85ef7

View file

@ -13,7 +13,7 @@ import { VariableSizeList as List } from 'react-window';
import LoadingBar from 'react-top-loading-bar'; import LoadingBar from 'react-top-loading-bar';
import Collections from './components/Collections'; import Collections from './components/Collections';
import Upload from './components/Upload'; import Upload from './components/Upload';
import DownloadManager from '../../services/downloadManager'; import DownloadManager from 'services/downloadManager';
import { import {
collection, collection,
syncCollections, syncCollections,
@ -344,7 +344,7 @@ export default function Gallery(props) {
/> />
<Collections <Collections
collections={collections} collections={collections}
selected={router.query.collection?.toString()} selected={Number(router.query.collection)}
selectCollection={selectCollection} selectCollection={selectCollection}
/> />
<Upload <Upload