From 7c59faf4a423195c3eda2c441404e4b036e56eba Mon Sep 17 00:00:00 2001 From: Jernej Pregelj Date: Wed, 24 Jul 2019 16:18:56 +0200 Subject: [PATCH] config fixes --- client/.env.local.example | 2 +- client/src/config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/.env.local.example b/client/.env.local.example index c5851cd..11aebb6 100644 --- a/client/.env.local.example +++ b/client/.env.local.example @@ -53,4 +53,4 @@ REACT_APP_BRIZO_ADDRESS="0x0474ed05ba757dde575dfaaaa267d9e7f3643abc" # REACT_APP_BRIZO_ADDRESS="0x00bd138abd70e2f00903268f3db08f2d25677c9e" REACT_APP_REPORT_EMAIL="test@example.com" -REACT_APP_ALLOW_PRICING="true" +# REACT_APP_ALLOW_PRICING=true diff --git a/client/src/config.ts b/client/src/config.ts index 89a9d69..3952878 100644 --- a/client/src/config.ts +++ b/client/src/config.ts @@ -28,4 +28,4 @@ export const faucetUri = // export const verbose = true export const analyticsId = 'UA-60614729-11' -export const allowPricing = process.env.REACT_APP_ALLOW_PRICING || 'false' +export const allowPricing = process.env.REACT_APP_ALLOW_PRICING || false