Hi - https://source.unsplash.com/random was deprecated by Unsplash in mid-2024 and now returns 503. It's referenced in the Hero stories fixtures:
src/components/Hero/Hero.stories.js L26: imageUrl: "https://source.unsplash.com/random",
src/components/Hero/Hero.stories.js L32: imageUrl: "https://source.unsplash.com/random",
These look like Storybook fixtures rather than production code, but anyone viewing the stories (incl. a deployed Storybook) sees broken hero images.
Two fixes:
- Swap each fixture to a specific
https://images.unsplash.com/photo-<id>?... URL — one-line change.
- Use
tteg to save two concrete local images the stories can import: uv tool install tteg; tteg save "abstract" ./src/components/Hero/fixtures/hero-a (https://github.com/kiluazen/tteg).
Context: ~16,500 live GitHub files still reference this dead endpoint — writeup at https://github.com/kiluazen/tteg/blob/research-note-autark/RESEARCH.md
Hi -
https://source.unsplash.com/randomwas deprecated by Unsplash in mid-2024 and now returns 503. It's referenced in the Hero stories fixtures:src/components/Hero/Hero.stories.jsL26:imageUrl: "https://source.unsplash.com/random",src/components/Hero/Hero.stories.jsL32:imageUrl: "https://source.unsplash.com/random",These look like Storybook fixtures rather than production code, but anyone viewing the stories (incl. a deployed Storybook) sees broken hero images.
Two fixes:
https://images.unsplash.com/photo-<id>?...URL — one-line change.ttegto save two concrete local images the stories can import:uv tool install tteg; tteg save "abstract" ./src/components/Hero/fixtures/hero-a(https://github.com/kiluazen/tteg).Context: ~16,500 live GitHub files still reference this dead endpoint — writeup at https://github.com/kiluazen/tteg/blob/research-note-autark/RESEARCH.md