summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
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 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);