0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Updated email error copy

This commit is contained in:
Peter Zimon 2020-10-02 14:51:26 +02:00
parent 57e83ebe6c
commit 231bafb826
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ const DEV_MODE_DATA = {
showPopup: true,
site: Fixtures.site,
member: Fixtures.member.paid,
page: 'accountHome'
page: 'signup'
};
export default class App extends React.Component {
constructor(props) {

View file

@ -7,7 +7,7 @@ export const FormInputError = ({field}) => {
return `Please enter a name`;
case 'email':
return `Please supply an email`;
return `Enter your email address`;
default:
return `Please enter ${field.name}`;