From c5390bf86695e39b354a00da8e6a32da46218834 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?jeesun=20=EC=A7=80=EC=84=A0?= Date: Tue, 19 Mar 2024 10:19:48 -0700 Subject: [PATCH] Update src/app/(sidebar)/account/fund/page.tsx Co-authored-by: Iveta --- src/app/(sidebar)/account/fund/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; };