Skip to content

Commit

Permalink
fix: use const over let specific case (prefer-const lint error fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
incerta committed May 26, 2023
1 parent d195d6a commit f487bd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default command(
console.log('');
intro(i18n.t('Starting new conversation'));
const prompt = async () => {
let msgYou = `${i18n.t('You')}:`;
const msgYou = `${i18n.t('You')}:`;
const userPrompt = (await text({
message: `${cyan(msgYou)}`,
placeholder: i18n.t(`send a message ('exit' to quit)`),
Expand Down

0 comments on commit f487bd2

Please sign in to comment.