File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
packages/grant-explorer/src
features/contributors/components/Buttons Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export function MintingActionButton({
62
62
const { attestationChainId : chainId , attestationUid = "" } =
63
63
attestation ?? { } ;
64
64
65
- const attestationLink = `https://gitcoin-server-api-git-card-update-grants-stack.vercel.app /attestation/${ attestationUid } ` ;
65
+ const attestationLink = `${ process . env . REACT_APP_ATTESTATION_SERVER } /attestation/${ attestationUid } ` ;
66
66
67
67
return isMinted ? (
68
68
< >
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ export const useEASAttestation = (
55
55
}
56
56
updateStatus ( ProgressStatus . IN_PROGRESS ) ;
57
57
const attestationUID = await attest . mutateAsync ( data ) ;
58
- const attestationLink = `https://gitcoin-server-api-git-card-update-grants-stack.vercel.app /attestation/${ attestationUID } ` ;
58
+ const attestationLink = `${ process . env . REACT_APP_ATTESTATION_SERVER } /attestation/${ attestationUID } ` ;
59
59
updateStatus ( ProgressStatus . IS_SUCCESS ) ;
60
60
return attestationLink ;
61
61
} catch ( error ) {
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export const useGetAttestationData = (
30
30
31
31
try {
32
32
const response = await fetch (
33
- `https://gitcoin-server-api-git-card-update-grants-stack.vercel.app /api/getAttestation` ,
33
+ `${ process . env . REACT_APP_ATTESTATION_SERVER } /api/getAttestation` ,
34
34
{
35
35
method : "POST" ,
36
36
headers : {
You can’t perform that action at this time.
0 commit comments