typed MapListDialog

This commit is contained in:
muerwre 2019-02-21 11:34:35 +07:00
parent 9006bb375b
commit cf6866240b
6 changed files with 124 additions and 66 deletions

View file

@ -476,7 +476,7 @@ function* searchGetRoutes() {
const { routes: { step, shift, filter: { title, distance, tab } } } = yield select(getState);
return yield call(getRouteList, {
const result = yield call(getRouteList, {
id,
token,
title,
@ -486,6 +486,10 @@ function* searchGetRoutes() {
author: tab === 'mine' ? id : '',
starred: tab === 'starred',
});
console.log('RESULT?', result);
return result;
}
function* searchSetSagaWorker() {