From 4bbcc82db5b50052327b9c483e19162edeeeecf7 Mon Sep 17 00:00:00 2001 From: Ishan Lakhwani Date: Sat, 10 Aug 2024 21:55:46 +0530 Subject: [PATCH] attestation urls fixed --- packages/nextjs/components/home/AttestationList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nextjs/components/home/AttestationList.tsx b/packages/nextjs/components/home/AttestationList.tsx index 0d6396d..b840ab3 100644 --- a/packages/nextjs/components/home/AttestationList.tsx +++ b/packages/nextjs/components/home/AttestationList.tsx @@ -18,10 +18,10 @@ const AttestationList: React.FC<{ userType: string }> = ({ userType }) => { try { let res; if (userType === "Contributor" && connectedAddress) { - res = await axios.get(`https://143.110.185.152/webhook/attestationRecipient/${connectedAddress}`); + res = await axios.get(`https://143-110-185-152.nip.io/webhook/attestationRecipient/${connectedAddress}`); } else { res = await axios.get( - "https://143.110.185.152/webhook/attestationAttester/0xfe79ef5c242656220aD2b606AF755E505738F3C4", + "https://143-110-185-152.nip.io/webhook/attestationAttester/0xfe79ef5c242656220aD2b606AF755E505738F3C4", ); } setAttestations(res.data);