From 7e4f5dbdab21ac488ef004c59895c2aa37d077ae Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Wed, 1 Aug 2018 14:35:40 +0100 Subject: [PATCH] Fix typo --- embark-ui/src/sagas/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embark-ui/src/sagas/index.js b/embark-ui/src/sagas/index.js index 2b1065c27..370cd6fc1 100644 --- a/embark-ui/src/sagas/index.js +++ b/embark-ui/src/sagas/index.js @@ -16,5 +16,5 @@ export function *watchFetchAccounts() { } export default function *root() { - yield all([fork(fetchAccounts)]); + yield all([fork(watchFetchAccounts)]); }