mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-26 06:47:17 +10:00
Remove SearchPage saga from the root saga
This commit is contained in:
parent
0e47e02add
commit
513acb8ea2
1 changed files with 1 additions and 2 deletions
|
|
@ -1,10 +1,9 @@
|
|||
import { watchAuthInfo, watchAuth } from './ducks/Auth.duck';
|
||||
import { watchLoadListings } from './containers/SearchPage/SearchPage.duck';
|
||||
import { watchSdk } from './ducks/sdk.duck';
|
||||
|
||||
const createRootSaga = sdk =>
|
||||
function* rootSaga() {
|
||||
yield [watchAuthInfo(sdk), watchAuth(sdk), watchLoadListings(sdk), watchSdk(sdk)];
|
||||
yield [watchAuthInfo(sdk), watchAuth(sdk), watchSdk(sdk)];
|
||||
};
|
||||
|
||||
export default createRootSaga;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue