summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-09-24 14:34:35 +0200
committerYuval Adam <_@yuv.al>2025-09-24 14:34:35 +0200
commita75acdb10d0fdcca1d4c286073fce0d07eca6e3e (patch)
tree89313a48538e2721b9fac38baf10e8c738bcba88 /src/components
parentd2a33bd7967602a00662c965a32ce0ae590b18de (diff)
Move /imgs/ path
Diffstat (limited to 'src/components')
-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 982d841..85c1a11 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(`${IMAGES_BASE_URL}/imgs.json`)
+ fetch(`/imgs/`)
.then(res => res.json())
.then(imgs => (imgs as any)["280"])
.then(setImages);