Skip to content

Commit

Permalink
(docs) improve chuck norris command
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Nov 16, 2024
1 parent 8acfd0b commit 8ea4f68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/components/Terminal/chuck-norris.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default async function chuck_norris(this: JQueryTerminal) {
const json = await res.json();
const { data, success } = schema.safeParse(json);
if (success) {
this.echo(`[[;white;]${data.value}]`, { typing: true, delay, keepWords: true });
this.echo(`[[b;white;]${data.value}]`, { typing: true, delay, keepWords: true });
} else {
this.error('invalid response from remote server');
}
Expand Down

0 comments on commit 8ea4f68

Please sign in to comment.