summaryrefslogtreecommitdiff
path: root/src/components/Geshem.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Geshem.tsx')
-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);