removing unecessary console.log

This commit is contained in:
Antoine M 2024-05-13 10:27:46 +02:00
parent 67ea922811
commit 05d88a1f2e

View File

@ -13,7 +13,6 @@ export default function GameQuestion({ questionId, correctAnswer }, ...props) {
if (!screensTranslations || !screensTranslations.tutorial) return <Loading />; if (!screensTranslations || !screensTranslations.tutorial) return <Loading />;
const currentScreenTranslations = screensTranslations.game; const currentScreenTranslations = screensTranslations.game;
console.log("GameQuestion", currentScreenTranslations);
const objectPictureUrl = contextGameDatas.gameObjects[questionId].attrs.objectPictureUrl; const objectPictureUrl = contextGameDatas.gameObjects[questionId].attrs.objectPictureUrl;
function handleAnswer(questionId, answer) { function handleAnswer(questionId, answer) {