dispatch call returns void

This commit is contained in:
nklhrstv 2021-01-20 14:28:31 +02:00
parent f7e5e9a251
commit 244ec32f16

View file

@ -36,7 +36,7 @@ function CoreTransport() {
};
this.dispatch = function(action, field) {
try {
return dispatch(action, field);
dispatch(action, field);
} catch (error) {
console.error('CoreTransport', error);
}