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
If values are in an array ["text-[10px]", "lg:text-[14px]"] they are not picked up by the parser. Probably due to square brackets used in the array notation which cause the regex parser to fail.
They need to be converted to string and back to array "text-[10px] lg:text-[14px]".split(" ") to be picked up by the parser.
If values are in an array
["text-[10px]", "lg:text-[14px]"]
they are not picked up by the parser. Probably due to square brackets used in the array notation which cause the regex parser to fail.They need to be converted to string and back to array
"text-[10px] lg:text-[14px]".split(" ")
to be picked up by the parser.Fails:
Works:
The text was updated successfully, but these errors were encountered: