You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While formatting code to remove the warning for Tailwind CSS order, the code got weird: grid-cols-${tablet} w-full grid to grid-cols- grid w-full${tablet}
Recent problems (VIN):
While formatting code to remove the warning for Tailwind CSS order, the code got weird:
grid-cols-${tablet} w-full grid to grid-cols- grid w-full${tablet}
Whole code:
className={grid-cols-${phone} md:grid-cols-${tablet} grid w-full lg:grid-cols-${desktop} gap-10}
After formatting:
className={grid-cols-${phone} md:grid-cols-${tablet} lg:grid-cols- grid w-full${desktop} gap-10}
The text was updated successfully, but these errors were encountered: