Skip to content

Commit 69f3ae6

Browse files
committed
Cleaned up subscribeSection.js
1 parent d5df7bb commit 69f3ae6

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/components/Footer/subscribeSection.js

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ const SubscribeSection = ({ size }) => {
4040
case 'duplicate':
4141
return (
4242
<Typography variant='body2' className={classes.errorMessage}>
43-
That email address has already been registered with us.
43+
That email address has already been registered with us.
4444
</Typography>
4545
);
4646
case 'error':
4747
return (
4848
<Typography variant='body2' className={classes.errorMessage}>
49-
The email address you have submitted was invalid.
49+
The email address you have submitted was invalid.
5050
<br />
51-
Please check the format and resubmit.
51+
Please check the format and resubmit.
5252
</Typography>
5353
);
5454
case 'success':
@@ -58,9 +58,9 @@ const SubscribeSection = ({ size }) => {
5858
color='textSecondary'
5959
className={classes.successMessage}
6060
>
61-
Thanks for subscribing!
61+
Thanks for subscribing!
6262
<br />
63-
We will be in touch soon.
63+
We will be in touch soon.
6464
</Typography>
6565
);
6666
default:
@@ -119,7 +119,6 @@ const SubscribeSection = ({ size }) => {
119119
</Typography>
120120
<Grid className={size === 'lg' ? null : classes.emailSubscribe}>
121121
<TextField
122-
id='searchTextfield'
123122
onInput={(e) => setInputValue(e.target.value)}
124123
placeholder='name@domain.com'
125124
inputProps={ariaLabel}

0 commit comments

Comments
 (0)