diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 6b30646c9..493b7b02f 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -1600,7 +1600,7 @@ "message": "Resolve issues fast with our Priority help desk service - and more perks to come" }, "hub_supporter_manifesto": { - "message": "We strive to deliver the best privacy protection services to our users free of cost. While we do not charge for our privacy suite, you may choose to support us through a small monthly subscription. Join us in our mission by upgrading to Ghostery Plus - and unlock cool perks along the way!" + "message": "We strive to deliver the best privacy protection services to our users free of cost. While we do not charge for our browser extension, you may choose to support us through a small monthly subscription. Join us in our mission by upgrading to Ghostery Plus - and unlock cool perks along the way!" }, "hub_supporter_feature_theme_description": { "message": "Customize the Ghostery colors for a new visual experience! Introduced through popular request. Check out our special Dark Blue theme, and more to come." @@ -1815,7 +1815,7 @@ "message": "Themes" }, "subscribe_pitch": { - "message": "While Ghostery is free, you can choose to support us through a small subscription of $2 per month in exchange for cool perks, such as color themes, priority help service, and more. Join our mission and subscribe!" + "message": "While Ghostery is free, you can choose to support us through a small monthly subscription in exchange for special perks like color themes, personal tracking statistics, and more. Join our mission and subscribe!" }, "subscribe_pitch_spring": { "message": "Like what we do? Support us and unlock new spring themes, personal tracking insights, and other special perks by upgrading to Ghostery Plus!" @@ -1949,7 +1949,7 @@ "message": "No, Keep History" }, "panel_stats_pitch_modal_text": { - "message": "Unlock your historical stats (and other cool perks) by upgrading to Ghostery Plus for $SPAN_START$$2/month.$SPAN_END$$LINK_START$Learn More$LINK_END$", + "message": "Unlock your historical stats (and other cool perks) by upgrading to Ghostery Plus.$LINK_START$Learn More$LINK_END$", "placeholders": { "span_start": { "content": "" diff --git a/app/hub/Views/PlusView/PlusView.jsx b/app/hub/Views/PlusView/PlusView.jsx index ed8d77bda..d44dbab01 100644 --- a/app/hub/Views/PlusView/PlusView.jsx +++ b/app/hub/Views/PlusView/PlusView.jsx @@ -63,10 +63,6 @@ class PlusView extends Component {
{this._renderButton()} -
diff --git a/app/hub/Views/PlusView/PlusView.scss b/app/hub/Views/PlusView/PlusView.scss index 0de80b014..7e471671a 100644 --- a/app/hub/Views/PlusView/PlusView.scss +++ b/app/hub/Views/PlusView/PlusView.scss @@ -31,7 +31,7 @@ } .PlusView__costContainer { margin: 0 auto; - max-width: 382px; + max-width: 182px; } .PlusView__button { min-width: 180px; diff --git a/app/hub/Views/PlusView/__tests__/PlusView.test.jsx b/app/hub/Views/PlusView/__tests__/PlusView.test.jsx index 14d2912ca..d490362a1 100644 --- a/app/hub/Views/PlusView/__tests__/PlusView.test.jsx +++ b/app/hub/Views/PlusView/__tests__/PlusView.test.jsx @@ -56,7 +56,6 @@ describe('app/hub/Views/PlusView component', () => { expect(component.find('.PlusView__headingImage').length).toBe(1); expect(component.find('.PlusView__headingTitle').length).toBe(5); expect(component.find('.PlusView__headingDescription').length).toBe(5); - expect(component.find('.PlusView__headingCost').length).toBe(1); expect(component.find('.PlusView__perk').length).toBe(3); expect(component.find('.PlusView__perkIcon').length).toBe(3); expect(component.find('.PlusView__perkTitle').length).toBe(3); diff --git a/app/hub/Views/PlusView/__tests__/__snapshots__/PlusView.test.jsx.snap b/app/hub/Views/PlusView/__tests__/__snapshots__/PlusView.test.jsx.snap index f4b3356eb..2b10d624e 100644 --- a/app/hub/Views/PlusView/__tests__/__snapshots__/PlusView.test.jsx.snap +++ b/app/hub/Views/PlusView/__tests__/__snapshots__/PlusView.test.jsx.snap @@ -31,14 +31,6 @@ exports[`app/hub/Views/PlusView component Snapshot tests with react-test-rendere > already_subscribed -
@@ -368,14 +360,6 @@ exports[`app/hub/Views/PlusView component Snapshot tests with react-test-rendere > get_ghostery_plus -
diff --git a/app/panel/actions/RewardsActions.js b/app/panel/actions/RewardsActions.js index a8d61933d..6a3a9e531 100644 --- a/app/panel/actions/RewardsActions.js +++ b/app/panel/actions/RewardsActions.js @@ -41,7 +41,6 @@ export function toggleOffersEnabled(enabled) { }; } - // TODO the reducer calls getRewardMessage // determine whether it would be better to simply call getRewardMessage directly where sendSignal is called // (both since reducers are not supposed to have side effects and also because...why the extra complexity?)