Skip to content

Commit

Permalink
Fix typo in width / height parsing
Browse files Browse the repository at this point in the history
Summary:
Seems like an obvious typo! Whoops!

Not causing any known issues, but... this should be fixed.

Changelog: [Internal]

Reviewed By: genkikondo

Differential Revision: D36940476

fbshipit-source-id: d534ca3763b1f91e41c56953bf3d665e86db9e2b
  • Loading branch information
JoshuaGross authored and facebook-github-bot committed Jun 7, 2022
1 parent ea7c9f2 commit b0c2b10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ static inline YGStyle::Dimensions convertRawProp(
rawProps,
heightName,
sourceValue[YGDimensionHeight],
defaultValue[YGDimensionWidth]);
defaultValue[YGDimensionHeight]);
return dimensions;
}

Expand Down

0 comments on commit b0c2b10

Please sign in to comment.