diff --git a/src/components/api.tsx b/src/components/api.tsx index 4d36220..57fb9e6 100644 --- a/src/components/api.tsx +++ b/src/components/api.tsx @@ -17,7 +17,7 @@ interface NeoReview extends Review { export default function Reviews() { const [reviews, setReviews] = createSignal([]); onMount(() => { - fetch("https://backendreview.mono.exhq.dev/getreviews") + fetch("https://review.exhq.dev/getreviews") .then(response => response.json()) .then((data: Review[]) => { const promises = data.map(review => (