We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 36b9e17 + 515276e commit 8303460Copy full SHA for 8303460
Frontend/src/Pages/GamePage.jsx
@@ -21,7 +21,9 @@ const GamePage = () => {
21
const data = JSON.parse(event.data);
22
const monstersSlainValue = Number(data?.payload?.monstersSlain);
23
//Update Quiz
24
- axios.put(`${URI}quizes/quizFinished/${quizId}`, {
+ axios.put(`${URI}quizzes/quizFinished/${userId}`,
25
+ {
26
+ quizId: quizId
27
}, {
28
withCredentials: true,
29
headers: {
0 commit comments