return null action if no action must be dispatched on new state

This commit is contained in:
nklhrstv 2020-03-27 11:01:44 +02:00
parent 20395658bf
commit 178446fcfb

View file

@ -51,6 +51,8 @@ const onNewDiscoverState = (discover) => {
}
}
};
} else {
return null;
}
};