We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eebfc82 commit d04c853Copy full SHA for d04c853
src/components/EventsPhotoCarousel.tsx
@@ -57,7 +57,7 @@ function EventsPhotoCarousel({setSelectedEvent}: { setSelectedEvent: (event: Cal
57
const fetchEvents = async () => {
58
setIsLoading(true);
59
try {
60
- const response = await fetch("https://api.thesoda.io/calendar/events");
+ const response = await fetch("https://api.thesoda.io/api/calendar/events");
61
const data = await response.json();
62
63
if (data?.status === "success" && Array.isArray(data.events)) {
0 commit comments