chore: fix build errors

pull/1049/head
Paul Makles 2022-01-02 13:12:22 +00:00
parent 5984d61239
commit 3c653064a6
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ export default function SyncManager() {
try {
state.sync.apply(packet.update);
} catch (err) {
reportError(err, "failed_sync_apply");
reportError(err as any, "failed_sync_apply");
}
}
}

View File

@ -212,7 +212,7 @@ export default class State {
return;
}
} catch (err) {
reportError(err, "redux_migration");
reportError(err as any, "redux_migration");
}
// Load MobX store.