Fix Firebase config

This commit is contained in:
2026-01-20 23:33:44 -06:00
parent c633dcd413
commit 4c8a30b9f6

View File

@@ -86,7 +86,7 @@ newQuestionBtn.addEventListener('click', async () => {
try { try {
// Just fetch a random question without filtering // 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 method: 'GET' // Changed to GET - simpler
}); });