diff --git a/src/components/api.tsx b/src/components/api.tsx index 2a6c163..59e0b80 100644 --- a/src/components/api.tsx +++ b/src/components/api.tsx @@ -21,7 +21,7 @@ export default function Reviews() { .then(response => response.json()) .then((data: Review[]) => { const promises = data.map(review => ( - fetch(`https://dc-lookup.mono.exhq.dev/v1/user/${review.discordID}`) + fetch(`https://dc-lookup.spiro.exhq.dev/v1/user/${review.discordID}`) .then(response => response.json()) .then(user => ({ ...review, @@ -67,7 +67,7 @@ export default function Reviews() { } -export const theImager = async (id: string): Promise => (await fetch(`https://dc-lookup.mono.exhq.dev/v1/user/${id}`) +export const theImager = async (id: string): Promise => (await fetch(`https://dc-lookup.spiro.exhq.dev/v1/user/${id}`) .then(res => res.json()).then(data => "https://proxy.mono.exhq.dev/_/plain/"+data.avatar.link).catch(() => "https://http.cat/status/100")); function SingleReview(props: NeoReview) {