refactor: don't run automatic optimistic updates

This commit is contained in:
Derrick Hammer 2023-07-13 03:35:33 -04:00
parent 232f5ba730
commit c5a2dc86e1
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 0 additions and 6 deletions

View File

@ -25,10 +25,4 @@ export default class Client extends BaseClient {
this.beaconUrl = config.beaconUrl; this.beaconUrl = config.beaconUrl;
this.http.defaults.baseURL = this.beaconUrl; this.http.defaults.baseURL = this.beaconUrl;
} }
async sync(): Promise<void> {
await super.sync();
this.subscribe();
}
} }