Revert "change to APIBase"

This reverts commit 7d3d96c158.
This commit is contained in:
2026-03-27 19:34:30 +01:00
parent 7d3d96c158
commit 022d1fc110
+1 -1
View File
@@ -37,7 +37,7 @@ function HomePage() {
useEffect(() => {
if (!expandedCardId || cardImages[expandedCardId]) return;
fetch(`${API_BASE}/cardImage/${expandedCardId}`)
fetch(`http://localhost:3000/cardImage/${expandedCardId}`)
.then(res => res.json())
.then(data => {
if (data.image) setCardImage(expandedCardId, data.image);