turn on popup help widget

leaving the feature flag in place in case we decide to revert to the form.
This commit is contained in:
Chris Garrity 2020-05-01 09:25:10 -04:00
parent 2650c44407
commit 23980e1f23
2 changed files with 2 additions and 2 deletions

View file

@ -8,5 +8,5 @@ const flagInUrl = flag => {
};
module.exports = {
CONTACT_US_POPUP: isStaging() && flagInUrl('CONTACT_US_POPUP')
CONTACT_US_POPUP: flagInUrl('CONTACT_US_POPUP')
};

View file

@ -8,7 +8,7 @@ const render = require('../../lib/render.jsx');
const HelpForm = require('../../components/helpform/helpform.jsx');
const HelpWidget = require('../../components/helpwidget/helpwidget.jsx');
const {CONTACT_US_POPUP} = require('../../lib/feature-flags.js');
const CONTACT_US_POPUP = true;
const InformationPage = require('../../components/informationpage/informationpage.jsx');
require('./contact-us.scss');