diff --git a/src/app/(sidebar)/account/fund/page.tsx b/src/app/(sidebar)/account/fund/page.tsx index 1b508816..04d70ffa 100644 --- a/src/app/(sidebar)/account/fund/page.tsx +++ b/src/app/(sidebar)/account/fund/page.tsx @@ -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; };