Skip to content

Commit

Permalink
attestation urls fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
bluntbrain committed Aug 10, 2024
1 parent 7a61d71 commit 4bbcc82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/components/home/AttestationList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4bbcc82

Please sign in to comment.