diff --git a/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm b/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm index e5c7e6a85375fb..f90289c4d6c060 100644 --- a/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm +++ b/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm @@ -340,8 +340,8 @@ static RCTCornerRadii RCTCornerRadiiFromBorderRadii(BorderRadii borderRadii) static RCTBorderColors RCTBorderColorsFromBorderColors(BorderColors borderColors) { - return RCTBorderColors{.left = RCTCGColorRefUnretainedFromSharedColor(borderColors.left), - .top = RCTCGColorRefUnretainedFromSharedColor(borderColors.top), + return RCTBorderColors{.top = RCTCGColorRefUnretainedFromSharedColor(borderColors.top), + .left = RCTCGColorRefUnretainedFromSharedColor(borderColors.left), .bottom = RCTCGColorRefUnretainedFromSharedColor(borderColors.bottom), .right = RCTCGColorRefUnretainedFromSharedColor(borderColors.right)}; }