From 0c68dbde9da5fd17fc060b113d7fe3b87fd6e379 Mon Sep 17 00:00:00 2001 From: einhorn_b Date: Thu, 22 Apr 2021 16:56:05 +0200 Subject: [PATCH] fixing wrong var name --- frontend/src/apis/communityAPI.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/apis/communityAPI.js b/frontend/src/apis/communityAPI.js index 4af1ea901..d675a65bf 100644 --- a/frontend/src/apis/communityAPI.js +++ b/frontend/src/apis/communityAPI.js @@ -36,7 +36,7 @@ const communityAPI = { return apiGet(CONFIG.COMMUNITY_API_URL + 'getBalance/' + session_id) }, transactions: async (session_id) => { - return apiGet(CONFIG.COMMUNITY_API__URL + 'listTransactions/1/25/ASC/' + session_id) + return apiGet(CONFIG.COMMUNITY_API_URL + 'listTransactions/1/25/ASC/' + session_id) }, /*create: async (session_id, email, amount, memo, target_date = new Date() ) => { const payload = { @@ -57,7 +57,7 @@ const communityAPI = { memo, auto_sign: true, } - return apiPost(CONFIG.COMMUNITY_API__URL + 'sendCoins/', payload) + return apiPost(CONFIG.COMMUNITY_API_URL + 'sendCoins/', payload) }, }