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

fix: #902 Issue with text on after registering as a Developer #903

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,11 @@ exports[`Register should match a snapshot for SUCCESS state 1`] = `
onButtonClick={[Function]}
title="Success!"
>
Check you email to confirm your account
<div
className="mb-3"
>
Check you email to confirm your account
</div>
</CallToAction>
</div>
<div>
Expand Down
2 changes: 1 addition & 1 deletion packages/marketplace/src/components/pages/register.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export const Register: React.FunctionComponent<RegisterProps & FormikProps<Regis
}
isCenter
>
Check you email to confirm your account
<div className="mb-3">Check you email to confirm your account</div>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be "your email" not "you email", sorry!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo updated 👍

</CallToAction>
) : (
<>
Expand Down