-
Notifications
You must be signed in to change notification settings - Fork 1
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
Removes duplicate headers for all tools. #1036
Conversation
Preview branch generated at https://MPDX-0000-tools-remove-duplicate-header.d3dytjb8adxkk5.amplifyapp.com |
Bundle sizes [mpdx-react]Compared against d4ae9c2 No significant changes found |
@@ -152,11 +152,6 @@ const FixSendNewsletter: React.FC<Props> = ({ | |||
return ( | |||
<Box className={classes.outer} data-testid="Home"> | |||
<Grid container className={classes.container}> | |||
<Grid item xs={12}> | |||
<Typography variant="h4">{t('Fix Send Newsletter')}</Typography> | |||
<Divider className={classes.divider} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you also remove the classes.divider
styles if they aren't being used?
@@ -121,10 +115,6 @@ const MergeContacts: React.FC<Props> = ({ | |||
> | |||
{!loading && data ? ( | |||
<Grid container className={classes.container}> | |||
<Grid item xs={12}> | |||
<Typography variant="h4">{t('Merge Contacts')}</Typography> | |||
<Divider className={classes.divider} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove divider
styles here as well.
@@ -123,10 +117,7 @@ const MergePeople: React.FC<Props> = ({ | |||
> | |||
{!loading && data ? ( | |||
<Grid container className={classes.container}> | |||
<Grid item xs={12}> | |||
<Typography variant="h4">{t('Merge People')}</Typography> | |||
<Divider className={classes.divider} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove divider
styles
@@ -207,10 +206,6 @@ const TntConnect: React.FC<Props> = ({ accountListId }: Props) => { | |||
<LoadingSpinner firstLoad={true} data-testid="LoadingSpinner" /> | |||
)} | |||
<ContainerBox container> | |||
<Grid item xs={12}> | |||
<Typography variant="h4">{t('Import from TntConnect')}</Typography> | |||
<Divider className={classes.divider} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove divider
styles
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good! If you could just remove the divider
styles then I think it is good to go.
@caleballdrin Thanks! Sorry I should have removed those. |
Description
Checklist: