diff --git a/src/components/game/GameAnswerExplanation.jsx b/src/components/game/GameAnswerExplanation.jsx
index a5a37db..4bf8608 100644
--- a/src/components/game/GameAnswerExplanation.jsx
+++ b/src/components/game/GameAnswerExplanation.jsx
@@ -3,16 +3,23 @@ import { useGame } from "../../hooks/useGame";
import sucessIcon from "../../assets/img/icons/behaviour-type-success.svg";
import errorIcon from "../../assets/img/icons/behaviour-type-error.svg";
+import { useUser } from "../../hooks/useUser";
+import Loading from "../animations/Loading";
export default function GameAnwerExplanation({ questionId }) {
const { answers, contextGameDatas, setCurrentGameModal, checkIfGameIsComplete } = useGame();
+ const { screensTranslations } = useUser();
+
+ if (!screensTranslations || !screensTranslations.tutorial) return
{answerExplanation}