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

Updated name error copy

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

View file

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

View file

@ -4,7 +4,7 @@ export const FormInputError = ({field}) => {
if (field.required && !field.value) { if (field.required && !field.value) {
switch (field.name) { switch (field.name) {
case 'name': case 'name':
return `Please enter a name`; return `What should we call you?`;
case 'email': case 'email':
return `Enter your email address`; return `Enter your email address`;