Skip to content

Commit

Permalink
fixing syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
horeaporutiu committed Mar 5, 2024
1 parent 84a85de commit 0c141b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/terms-modal-banner-s3/webassets/modal.html
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@
mode: "cors",
};

const reqResponse = await fetch(url, reqOptions)
const res = await fetch(url, reqOptions);

return {
body: await res.text(),
status: res.status
}
status: res.status,
};
}

async function acceptTerms() {
Expand Down

0 comments on commit 0c141b6

Please sign in to comment.