fix: remove trailing comma in fetch URL for Unsplash API

This commit is contained in:
alexsparkes
2026-02-02 20:07:39 +00:00
parent d5d2efbd13
commit bbaadece43

View File

@@ -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) {