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
When executing gluestack-ui/v2-codemod tool, the values coming from v1 expressed as property={}, for example <... w={64} h={64} .../> should be converted to "px" values. Current version of codemod migrates those values to <... className="w-64 h-64" .../> and should be migrated to <... className="w-[64px] h-[64px]" ...>
Problem Statement
v2-codemod migrates some component with wrong configurations in className
Proposed Solution or API
Just as commented in description
Alternatives
No response
Additional Information
No response
The text was updated successfully, but these errors were encountered:
Description
When executing gluestack-ui/v2-codemod tool, the values coming from v1 expressed as property={}, for example <... w={64} h={64} .../> should be converted to "px" values. Current version of codemod migrates those values to <... className="w-64 h-64" .../> and should be migrated to <... className="w-[64px] h-[64px]" ...>
Problem Statement
v2-codemod migrates some component with wrong configurations in className
Proposed Solution or API
Just as commented in description
Alternatives
No response
Additional Information
No response
The text was updated successfully, but these errors were encountered: