diff options
Diffstat (limited to 'src/components/Geshem.tsx')
| -rw-r--r-- | src/components/Geshem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Geshem.tsx b/src/components/Geshem.tsx index acd2bc6..982d841 100644 --- a/src/components/Geshem.tsx +++ b/src/components/Geshem.tsx @@ -23,7 +23,7 @@ export function Geshem({ date }: GeshemProps) { const fetchImages = async () => fetch(`${IMAGES_BASE_URL}/imgs.json`) .then(res => res.json()) - .then(imgs => imgs["280"]) + .then(imgs => (imgs as any)["280"]) .then(setImages); const buildPlayback = async () => { |
