diff --git a/common/src/services/sync.service.ts b/common/src/services/sync.service.ts index d32db18e16..178953260f 100644 --- a/common/src/services/sync.service.ts +++ b/common/src/services/sync.service.ts @@ -328,10 +328,8 @@ export class SyncService implements SyncServiceAbstraction { } }); - await Promise.all([ - this.organizationService.save(organizations), - this.providerService.save(providers), - ]); + await this.organizationService.save(organizations); + await this.providerService.save(providers); if (await this.keyConnectorService.userNeedsMigration()) { await this.keyConnectorService.setConvertAccountRequired(true);