mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-12 18:29:57 -05:00
chore: fix build errors
This commit is contained in:
parent
096e0c84c1
commit
bdb1d939e7
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ export default function SyncManager() {
|
||||||
try {
|
try {
|
||||||
state.sync.apply(packet.update);
|
state.sync.apply(packet.update);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
reportError(err, "failed_sync_apply");
|
reportError(err as any, "failed_sync_apply");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -212,7 +212,7 @@ export default class State {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
reportError(err, "redux_migration");
|
reportError(err as any, "redux_migration");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load MobX store.
|
// Load MobX store.
|
||||||
|
|
Loading…
Reference in a new issue