We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
What version of prettier-plugin-tailwindcss are you using?
prettier-plugin-tailwindcss
v0.6.9
What version of Tailwind CSS are you using?
v3.4.17
What version of Node.js are you using?
v21.5.0
What package manager are you using?
npm
What operating system are you using?
Windows
Describe your issue
const handleFileUpload = async (e: React.ChangeEvent<HTMLInputElement>) => { // ... };
The type annotations in Typescript are being removed. So the above code snippet is converted to:
const handleFileUpload = async (e: React.ChangeEvent) => { // ... };
The text was updated successfully, but these errors were encountered:
I have the same problem, I tried with other version but still get same problem.
Sorry, something went wrong.
No branches or pull requests
What version of
prettier-plugin-tailwindcss
are you using?v0.6.9
What version of Tailwind CSS are you using?
v3.4.17
What version of Node.js are you using?
v21.5.0
What package manager are you using?
npm
What operating system are you using?
Windows
Describe your issue
The type annotations in Typescript are being removed. So the above code snippet is converted to:
The text was updated successfully, but these errors were encountered: