Fix the bug caused by the fix of the previous bug...

This commit is contained in:
Lucien Astié 2024-08-10 17:04:10 +02:00
parent 87b7d9e246
commit f80ff9c60d

View file

@ -56,7 +56,7 @@ export default function GameRoom({ params }: roomProps) {
const localBrowserId = localStorage.getItem("browserId")
setBrowserId(localBrowserId)
const localCustomQuestionsString = localStorage.getItem("customQuestions")
const localCustomQuestions = JSON.parse(localCustomQuestionsString != null ? localCustomQuestionsString : "{}")
const localCustomQuestions = JSON.parse(localCustomQuestionsString != null ? localCustomQuestionsString : "[]")
setCustomQuestions(localCustomQuestions == null ? [] : localCustomQuestions)
// Listen for incoming setMessages