forked from abner/for-legacy-web
chore: fix build errors
parent
096e0c84c1
commit
bdb1d939e7
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -212,7 +212,7 @@ export default class State {
|
|||
return;
|
||||
}
|
||||
} catch (err) {
|
||||
reportError(err, "redux_migration");
|
||||
reportError(err as any, "redux_migration");
|
||||
}
|
||||
|
||||
// Load MobX store.
|
||||
|
|
|
|||
Loading…
Reference in New Issue