Skip to content

Commit

Permalink
Uncomment debug variable
Browse files Browse the repository at this point in the history
  • Loading branch information
claysmalley committed Sep 10, 2022
1 parent 239d9f0 commit 1f79c92
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/configs/config.aws.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
6 changes: 3 additions & 3 deletions src/configs/config.localhost.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
6 changes: 3 additions & 3 deletions src/configs/config.maptiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ const ATTRIBUTION_TEXT =
'<a href="https://www.maptiler.com/copyright/" target="_blank">&copy; MapTiler</a>';

/*
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,
};

0 comments on commit 1f79c92

Please sign in to comment.