Skip to content

Commit

Permalink
style: run biome format
Browse files Browse the repository at this point in the history
  • Loading branch information
DASPRiD committed Nov 2, 2024
1 parent b8626cd commit 5b232b2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,18 @@ export class SyncManager {
await this.preSyncEntity(em, service, entity);
});

this.config.logger.info(`Entity with routing key ${entity.routingKeyPrefix} pre-synced`);
this.config.logger.info(
`Entity with routing key ${entity.routingKeyPrefix} pre-synced`,
);
}
}
}

private async preSyncEntity(em: EntityManager, service: UpstreamService, entity: UpstreamEntity): Promise<void> {
private async preSyncEntity(
em: EntityManager,
service: UpstreamService,
entity: UpstreamEntity,
): Promise<void> {
const versions = new Map(
(
await em
Expand Down

0 comments on commit 5b232b2

Please sign in to comment.