Skip to content

Commit

Permalink
changed func
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanLiVa committed Apr 23, 2024
1 parent cb87662 commit d2ca1ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/games/calcGame.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const calc = () => {
const isCorrect = mainLogicGame(question, rightAnswer, userName);
if (!isCorrect) return;
}
console.log(`Congratulations, ${userName} !`);
console.log(`Congratulations, ${userName}!`);
};

export default calc;
2 changes: 1 addition & 1 deletion src/games/evGame.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const askNumberQuestions = () => {
return;
}
}
console.log(`Congratulations, ${userName} !`);
console.log(`Congratulations, ${userName}!`);
};

export default askNumberQuestions;

0 comments on commit d2ca1ba

Please sign in to comment.