fixed variable name
Build and Push Image / build-and-push (push) Successful in 1m7s

This commit is contained in:
2026-04-29 22:30:54 -07:00
parent e0f5d7f3a5
commit 1de641a2ef
+1 -1
View File
@@ -109,7 +109,7 @@ const applyImageToItem = async (itemId, localImagePath, fileName, token) => {
} }
const formData = new FormData(); const formData = new FormData();
formData.append('image', fs.readFileSync(path.join(localImagePath, fileName)), filename); formData.append('image', fs.readFileSync(path.join(localImagePath, fileName)), fileName);
const response = await fetch(`${koillectionBaseUrl}/items/${itemId}/image`, { const response = await fetch(`${koillectionBaseUrl}/items/${itemId}/image`, {
method: 'POST', method: 'POST',
headers: { headers: {