Skip to content

Commit

Permalink
Update src/app/(sidebar)/account/fund/page.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: Iveta <[email protected]>
  • Loading branch information
jeesunikim and quietbits authored Mar 19, 2024
1 parent 8680b25 commit c5390bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(sidebar)/account/fund/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const callFriendBot = async ({
network === "futurenet"
? "https://friendbot-futurenet.stellar.org"
: "https://friendbot.stellar.org";
const response = await fetch(friendbotURL + "/?addr=" + publicKey);
const response = await fetch(`${friendbotURL}/?addr=${publicKey}`);

return response;
};
Expand Down

0 comments on commit c5390bf

Please sign in to comment.