pull/1255/head
Mikael Finstad 4 years ago
parent aacfe02d49
commit e155af886a
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

@ -2305,9 +2305,9 @@ const App = memo(() => {
const actionsWithCatch = Object.entries(actions).map(([key, action]) => [
key,
async () => {
async (...args) => {
try {
await action();
await action(...args);
} catch (err) {
handleError(err);
}

Loading…
Cancel
Save