-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Hubstrky 446 #5538
Hubstrky 446 #5538
Conversation
const onload = resp => { | ||
// Check Target Status | ||
const status = resp.target.status; | ||
if (status !== 200 || status > 300 || status < 200) { |
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.
The other comparisons are redundant if you're going to error on !== 200
anyway.
if (status !== 200 || status > 300 || status < 200) { | |
if (status !== 200) { |
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.
It seems I accidentally chose "Approve" on the last review, when I meant to chose "Comment". Let's see if I can correct that by submitting a new review.
Edit: Apparently not.
</h3> | ||
<p className={styles.message_body}> | ||
<FormattedMessage | ||
defaultMessage="Keep an eye out for product updates and an invite to join us as a tester in August." |
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.
Talked with @emclaren - can we drop "in August" and just go "Keep an eye out for product updates and an invite to join us as a tester"?
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.
LGTM after resolving Liv's comment.
Jira ticket 446
Adding Banner for email sign up for MVP2 launch