From c11a6eb8407ec59f166679f42575113f59889748 Mon Sep 17 00:00:00 2001 From: Eric Schultz Date: Thu, 3 Jan 2019 11:16:01 -0600 Subject: [PATCH] Fix redirect not included on followup step --- client/js/nonprofits/donate/followup-step.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/js/nonprofits/donate/followup-step.js b/client/js/nonprofits/donate/followup-step.js index a06b4363..f1bd69d5 100644 --- a/client/js/nonprofits/donate/followup-step.js +++ b/client/js/nonprofits/donate/followup-step.js @@ -27,7 +27,7 @@ function view(state) { }, [h('i.fa.fa-twitter-square'), ` ${I18n.t('nonprofits.donate.followup.share.twitter')}`] ) ]) // Show the 'finish' button only if we're in an offsite embedded modal - , false && state.params$().offsite + , state.params$().offsite ? h('div', [ h('button.button.finish', {on: {click: state.clickFinish$}}, I18n.t('nonprofits.donate.followup.finish')) ])