Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelsc committed Nov 6, 2023
1 parent a0fa325 commit b11d70f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/dashboard/dashboard.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down

0 comments on commit b11d70f

Please sign in to comment.