summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-09-24 14:35:19 +0200
committerYuval Adam <_@yuv.al>2025-09-24 14:35:19 +0200
commit4b2dc07ac729369e09f943b318217321c02acb53 (patch)
tree5dd5eaf86a28128bd110a105180d191628623b37 /src
parenta75acdb10d0fdcca1d4c286073fce0d07eca6e3e (diff)
Temporary load old images
Diffstat (limited to 'src')
-rw-r--r--src/components/Geshem.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Geshem.tsx b/src/components/Geshem.tsx
index 85c1a11..982d841 100644
--- a/src/components/Geshem.tsx
+++ b/src/components/Geshem.tsx
@@ -21,7 +21,7 @@ export function Geshem({ date }: GeshemProps) {
useEffect(() => {
const fetchImages = async () =>
- fetch(`/imgs/`)
+ fetch(`${IMAGES_BASE_URL}/imgs.json`)
.then(res => res.json())
.then(imgs => (imgs as any)["280"])
.then(setImages);