From bbaadece4301d19b7de55fd33d2af49984b226fe Mon Sep 17 00:00:00 2001 From: alexsparkes Date: Mon, 2 Feb 2026 20:07:39 +0000 Subject: [PATCH] fix: remove trailing comma in fetch URL for Unsplash API --- src/features/background/api/photoPackAPI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/background/api/photoPackAPI.js b/src/features/background/api/photoPackAPI.js index 284ac174..1ee3de8b 100644 --- a/src/features/background/api/photoPackAPI.js +++ b/src/features/background/api/photoPackAPI.js @@ -55,7 +55,7 @@ export async function fetchFromUnsplash(packId, settings) { try { // Use Mue API proxy which has the Unsplash token server-side - const response = await fetch(`${variables.constants.API_URL}/images/unsplash?${params}`,); + const response = await fetch(`${variables.constants.API_URL}/images/unsplash?${params}`); if (!response.ok) { if (response.status === 429) {