Skip to content

Commit 56fdc71

Browse files
committed
Fix url for ghpages
1 parent b0e9d5b commit 56fdc71

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/check.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const check = async () => {
103103
isAvailable.value = false;
104104
try {
105105
const holder = addressEth.value;
106-
const fetch_result = await fetch('/xrt_merkle_proofs.json');
106+
const fetch_result = await fetch('xrt_merkle_proofs.json');
107107
if (!fetch_result.ok) {
108108
throw new Error(`Merkle: ${fetch_result.statusText}`);
109109
}

src/components/claim.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const send = async (action = 'agree') => {
5353
result.error = null;
5454
try {
5555
const holder = $web3.state.account;
56-
const fetch_result = await fetch('/xrt_merkle_proofs.json');
56+
const fetch_result = await fetch('xrt_merkle_proofs.json');
5757
if (!fetch_result.ok) {
5858
throw new Error(`Merkle: ${fetch_result.statusText}`);
5959
}

0 commit comments

Comments
 (0)