Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-2046 Update Account Creation Panel #541

Merged
merged 3 commits into from Jun 15, 2020
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Merge branch 'develop' into GH-2046

  • Loading branch information
benstrumeyer committed Jun 15, 2020
commit 584ac0d732004a355cc7ba299d69b47e6b79ef8c
@@ -19,13 +19,13 @@ import { NavLink } from 'react-router-dom';
* in place of Sign In view on successful signing.
* @memberof PanelClasses
*/
const AccountSuccess = ({ email, is_expert }) => (
const AccountSuccess = ({ email }) => (
<div id="signin-success-panel">
<div className="row align-center">
<div className="small-11 columns text-center">
<h3 className="signin-success-title">{ t('panel_signin_success_title') }</h3>
<p>{ t('panel_signin_success') }</p>
<h3 className="signin-success-email">{ props.email }</h3>
<h3 className="signin-success-email">{ email }</h3>
<div className="premium-sparkles-icon" />
<h4 className="signin-premium-benefits">{ t('panel_signin_premium_benefits') }</h4>
<a className="learn-more-button" href="https://ghostery.com/midnight?utm_source=gbe&utm_campaign=in_app_account_creation_success" alt={t('learn_more')} target="_blank" rel="noopener noreferrer">
@@ -3,10 +3,12 @@
"author": "Ghostery",
"name": "__MSG_name__",
"short_name": "Ghostery",
"version": "8.5.1",
"version_name": "8.5.1",
"version": "8.5.0",
"version_name": "8.5.0",
"default_locale": "en",
"description": "__MSG_short_description__",
"debug": true,
"log": true,
"icons": {
"16": "app/images/icon16.png",
"48": "app/images/icon48.png",
@@ -53,17 +55,6 @@
],
"run_at": "document_start"
},
{
This conversation was marked as resolved by christophertino

This comment has been minimized.

@christophertino

christophertino Jun 15, 2020
Member

Add this back, please

"all_frames": false,
"js": [
"dist/checkout_pages.js"
],
"matches": [
"https://checkout.ghostery.com/*",
"https://checkout.ghosterystage.com/*"
],
"run_at": "document_start"
},
{
"all_frames": true,
"js": [
You are viewing a condensed version of this merge commit. You can view the full changes here.
ProTip! Use n and p to navigate between commits in a pull request.