pull/1255/head
Mikael Finstad 2023-01-03 18:39:15 +08:00
rodzic aacfe02d49
commit e155af886a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 25AB36E3E81CBC26
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

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