From 1f79c92c31ae5043ce5abe38aede71e836e2f1ff Mon Sep 17 00:00:00 2001 From: Clay Smalley Date: Sat, 10 Sep 2022 14:30:48 -0400 Subject: [PATCH] Uncomment debug variable --- src/configs/config.aws.js | 6 +++--- src/configs/config.localhost.js | 6 +++--- src/configs/config.maptiler.js | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/configs/config.aws.js b/src/configs/config.aws.js index 09fc0256b..300528763 100644 --- a/src/configs/config.aws.js +++ b/src/configs/config.aws.js @@ -7,12 +7,12 @@ const OPENMAPTILES_URL = "https://6ug7hetxl9.execute-api.us-east-2.amazonaws.com/data/v3.json"; /* -Uncomment this variable to override the shield text halo color. Useful while testing shield design changes. +Uncomment this variable to override the shield text halo color. Useful while testing shield design changes. Accepts an HTML color name, hex code, or other CSS color value. */ -//const SHIELD_TEXT_HALO_COLOR_OVERRIDE = "magenta"; +const SHIELD_TEXT_HALO_COLOR_OVERRIDE = null; export default { OPENMAPTILES_URL, - //SHIELD_TEXT_HALO_COLOR_OVERRIDE, + SHIELD_TEXT_HALO_COLOR_OVERRIDE, }; diff --git a/src/configs/config.localhost.js b/src/configs/config.localhost.js index c4d5a2d18..88085edb6 100644 --- a/src/configs/config.localhost.js +++ b/src/configs/config.localhost.js @@ -6,12 +6,12 @@ const OPENMAPTILES_URL = "http://localhost:8080/data/v3.json"; /* -Uncomment this variable to override the shield text halo color. Useful while testing shield design changes. +Uncomment this variable to override the shield text halo color. Useful while testing shield design changes. Accepts an HTML color name, hex code, or other CSS color value. */ -//const SHIELD_TEXT_HALO_COLOR_OVERRIDE = "magenta"; +const SHIELD_TEXT_HALO_COLOR_OVERRIDE = null; export default { OPENMAPTILES_URL, - //SHIELD_TEXT_HALO_COLOR_OVERRIDE, + SHIELD_TEXT_HALO_COLOR_OVERRIDE, }; diff --git a/src/configs/config.maptiler.js b/src/configs/config.maptiler.js index 757f1d577..3b2c82d83 100644 --- a/src/configs/config.maptiler.js +++ b/src/configs/config.maptiler.js @@ -20,14 +20,14 @@ const ATTRIBUTION_TEXT = '© MapTiler'; /* -Uncomment this variable to override the shield text halo color. Useful while testing shield design changes. +Uncomment this variable to override the shield text halo color. Useful while testing shield design changes. Accepts an HTML color name, hex code, or other CSS color value. */ -//const SHIELD_TEXT_HALO_COLOR_OVERRIDE = "magenta"; +const SHIELD_TEXT_HALO_COLOR_OVERRIDE = null; export default { OPENMAPTILES_URL, ATTRIBUTION_LOGO, ATTRIBUTION_TEXT, - //SHIELD_TEXT_HALO_COLOR_OVERRIDE, + SHIELD_TEXT_HALO_COLOR_OVERRIDE, };