From 4c8a30b9f627ff3feac4ee619d280826e786f5eb Mon Sep 17 00:00:00 2001 From: SanabhiG Date: Tue, 20 Jan 2026 23:33:44 -0600 Subject: [PATCH] Fix Firebase config --- display.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/display.js b/display.js index 734b18e..c08571a 100644 --- a/display.js +++ b/display.js @@ -86,7 +86,7 @@ newQuestionBtn.addEventListener('click', async () => { try { // Just fetch a random question without filtering - const response = await fetch(API_URL, { + const response = await fetch(CORS_PROXY + encodeURIComponent(API_URL), { method: 'GET' // Changed to GET - simpler });