diff --git a/src/app/components/dashboard/dashboard.component.ts b/src/app/components/dashboard/dashboard.component.ts index 5479d619..4f8e4468 100644 --- a/src/app/components/dashboard/dashboard.component.ts +++ b/src/app/components/dashboard/dashboard.component.ts @@ -222,7 +222,7 @@ export class DashboardComponent implements OnInit { updateActiveSyncCommitteeMessage(committee: SyncCommitteeResponse) { if (committee) { - const endTs = this.epochToTimestamp(committee.end_epoch+1) + const endTs = this.epochToTimestamp(committee.end_epoch + 1) const startTs = this.epochToTimestamp(committee.start_epoch) this.currentSyncCommitteeMessage = { title: 'Sync Committee', @@ -241,7 +241,7 @@ export class DashboardComponent implements OnInit { updateNextSyncCommitteeMessage(committee: SyncCommitteeResponse) { if (committee) { - const endTs = this.epochToTimestamp(committee.end_epoch+1) + const endTs = this.epochToTimestamp(committee.end_epoch + 1) const startTs = this.epochToTimestamp(committee.start_epoch) this.nextSyncCommitteeMessage = { title: 'Sync Committee Soon',