Skip to content

Commit

Permalink
🐛 fix(index.ts): fix color of the 'seconds...' text in the disconnect…
Browse files Browse the repository at this point in the history
…ed state message to match the rest of the message
  • Loading branch information
RagnarLothbrok-Odin committed Dec 24, 2023
1 parent b778c7f commit c95a8a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ async function generateProgressBar() {

case ConnectionState.Disconnected:
// @ts-expect-error [issue with the package not defining 'bright' colors within its type definitions]
return `⚠️ ${'Discord connection lost. Retrying in'.brightRed} ${countdownTimer.toString().brightBlue} ${'seconds... '.red}`.bold.toString();
return `⚠️ ${'Discord connection lost. Retrying in'.brightRed} ${countdownTimer.toString().brightBlue} ${'seconds... '.brightRed}`.bold.toString();

default:
return `📅 ${formatDate().green.italic} ${'|'.magenta} ${'Trakt:'.red} ${'Not playing.'}`.bold.toString();
Expand Down

0 comments on commit c95a8a3

Please sign in to comment.