Fix fetching error by tag

This commit is contained in:
jasper 2019-03-01 10:20:25 -08:00
parent 4d026baf17
commit c26f32ed92
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ const backendInteractorService = (credentials) => {
return apiService.denyUser({credentials, id})
}
const startFetching = ({timeline, store, userId = false, tag = false}) => {
const startFetching = ({timeline, store, userId = false, tag}) => {
return timelineFetcherService.startFetching({timeline, store, credentials, userId, tag})
}