From 6b29021075019f8238e3f371aa7318ccdd44c252 Mon Sep 17 00:00:00 2001 From: Andrea Maria Piana Date: Thu, 15 Aug 2024 08:29:08 +0100 Subject: [PATCH] [Remove me] Set credentials to test:test in prod proxy Prod server is misconfigured, it's using test server credentials. This commit hardcodes those credentials to continue testing. It will break once prod is updated. --- src/status_im/contexts/profile/config.cljs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/status_im/contexts/profile/config.cljs b/src/status_im/contexts/profile/config.cljs index 10c8971ac6..cc8e19cea8 100644 --- a/src/status_im/contexts/profile/config.cljs +++ b/src/status_im/contexts/profile/config.cljs @@ -12,10 +12,10 @@ :wakuV2Nameserver "8.8.8.8" :statusProxyEnabled config/status-proxy-enabled? :statusProxyStageName config/status-proxy-stage-name - :statusProxyMarketUser config/STATUS_BUILD_PROXY_USER - :statusProxyMarketPassword config/STATUS_BUILD_PROXY_PASSWORD - :statusProxyBlockchainUser config/STATUS_BUILD_PROXY_USER - :statusProxyBlockchainPassword config/STATUS_BUILD_PROXY_PASSWORD + :statusProxyMarketUser "test" + :statusProxyMarketPassword "test" + :statusProxyBlockchainUser "test" + :statusProxyBlockchainPassword "test" :openseaAPIKey config/opensea-api-key :poktToken config/POKT_TOKEN :infuraToken config/INFURA_TOKEN