From ffa0a3c5161323bbddb2aeb4215a345e86116b75 Mon Sep 17 00:00:00 2001 From: Eric Schultz Date: Wed, 1 Aug 2018 16:52:53 -0500 Subject: [PATCH] Fix bug where brand color was improperly declared --- .../js/recurring_donations/edit/custom-nonprofit-branding.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/js/recurring_donations/edit/custom-nonprofit-branding.es6 b/client/js/recurring_donations/edit/custom-nonprofit-branding.es6 index 10fda1e8..1cab953c 100644 --- a/client/js/recurring_donations/edit/custom-nonprofit-branding.es6 +++ b/client/js/recurring_donations/edit/custom-nonprofit-branding.es6 @@ -2,7 +2,7 @@ const color = require('color') module.exports = (brand_color = null) => { - brandColor = brand_color || '#5FB88D' + let brandColor = brand_color || '#5FB88D' return { lightest: color(brandColor).lighten(0.8).hexString() , lighter: color(brandColor).lighten(0.7).hexString()