Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
Update index.html
  • Loading branch information
FoxRefire committed Aug 5, 2024
1 parent 510e680 commit 92bcebe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<head>
<script type="module">
import getChallenge from './getChallenge.js'
window.onload = () => {
window.onload = async () => {
let b64encode = b => btoa(String.fromCharCode(...new Uint8Array(b)))
let challenge = getChallenge()
let challenge = await getChallenge()
console.log(challenge)
}
</script>
Expand Down

0 comments on commit 92bcebe

Please sign in to comment.