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

Inconsequent string wrapping #614

Open
albingroen opened this issue Aug 29, 2021 · 0 comments
Open

Inconsequent string wrapping #614

albingroen opened this issue Aug 29, 2021 · 0 comments

Comments

@albingroen
Copy link

Input

  const Element = () => (
    <div>
      <p>
        {`{t('Cool')}`}
      </p>
      <p>
        {`t('Cool')`}
      </p>
    </div>
  )

Expected output

  const Element = () => (
    <div>
      <p>
        {t('Cool')}
      </p>
      <p>
        t('Cool')
      </p>
    </div>
  )

Actual output

  const Element = () => (
    <div>
      <p>
        {`{t('Cool')}`}
      </p>
      <p>
        t('Cool')
      </p>
    </div>
  )

Why is the first p element getting wrapped in {``}, bet second not. I expect the first to act as the second (ie. not get wrapped.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant