Skip to content

Commit

Permalink
fix: less space
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoSerranoP committed Apr 10, 2024
1 parent 3e7d58f commit e242cba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/phase2cli/src/commands/ceremony/listParticipants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ const listParticipants = async () => {

const participantsDone = participantDetails.filter((participant) => participant.status === "DONE")
console.log(participantDetails)
console.log(`${theme.text.underlined("Total participants:")} ${participantDetails.length}`)
console.log(`${theme.text.underlined("Total participants finished:")} ${participantsDone.length}`)
console.log(`${theme.text.underlined("Total participants:")} ${participantDetails.length}`)
console.log(`${theme.text.underlined("Total participants finished:")} ${participantsDone.length}`)
} catch (err: any) {
showError(`Something went wrong: ${err.toString()}`, true)
}
Expand Down

0 comments on commit e242cba

Please sign in to comment.