Skip to content

Commit

Permalink
fix: remove email mode from myinfo limit message
Browse files Browse the repository at this point in the history
  • Loading branch information
wanlingt committed Nov 15, 2023
1 parent 1665a48 commit 5a45c98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ Warning.args = {
export const Error = InlineMessageTemplate.bind({})
Error.args = {
variant: 'error',
children: `Only 30 MyInfo fields are allowed in Email mode (30/30). [Learn more](http://localhost:6006)`,
children: `Only 30 MyInfo fields are allowed (30/30). [Learn more](http://localhost:6006)`,
useMarkdown: true,
}
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ const MyInfoText = ({

return (
<Text>
{`Only 30 MyInfo fields are allowed in Email mode (${numMyInfoFields}/30). `}
{`Only 30 MyInfo fields are allowed (${numMyInfoFields}/30). `}
<Link isExternal href={GUIDE_EMAIL_MODE}>
Learn more
</Link>
Expand Down

0 comments on commit 5a45c98

Please sign in to comment.