Skip to content

Commit

Permalink
🐞 Fix: RNIContentSizingMode.updateReactSizeIfNeeded
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Dec 12, 2024
1 parent f0629d7 commit d427fcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/Temp/RNIContentViewController/RNIContentSizingMode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,12 @@ public enum RNIContentSizingMode: String {
};

shadowView.minWidth = .init(
value: Float(newWidth),
value: Float(newReactWidth),
unit: .point
);

shadowView.maxWidth = .init(
value: Float(newWidth),
value: Float(newReactWidth),
unit: .point
);

Expand Down

0 comments on commit d427fcf

Please sign in to comment.