Skip to content

Commit

Permalink
fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timbrinded committed Nov 2, 2023
1 parent 8fbed43 commit 78abb1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/cli/src/cmds/runNetwork.ts
Original file line number Diff line number Diff line change
Expand Up @@ -385,9 +385,9 @@ const resolveTailChoice = async (env: Environment) => {

zombieContent = `, ${chalk.bgWhite.black("[,]")} Next Log, ${chalk.bgWhite.black(
"[.]"
)} Previous Log | CurrentLog: ${`${zombieNodes[zombieNodePointer]} (${
zombieNodePointer + 1
}/${zombieNodes.length})`}`;
)} Previous Log | CurrentLog: ${chalk.bgWhite.black(
`${zombieNodes[zombieNodePointer]} (${zombieNodePointer + 1}/${zombieNodes.length})`
)}`;

bottomBarContents = bottomBarBase + resumePauseProse[tailing ? 0 : 1] + zombieContent;

Expand Down

0 comments on commit 78abb1e

Please sign in to comment.