Skip to content

Commit a4a1fc1

Browse files
committed
chore: lint
1 parent c0353e1 commit a4a1fc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bottomsheet/bottomsheet.ios.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function initLayoutGuide(controller: UIViewController) {
5454
layoutGuide.topAnchor.constraintEqualToAnchor(controller.topLayoutGuide.bottomAnchor),
5555
layoutGuide.bottomAnchor.constraintEqualToAnchor(controller.bottomLayoutGuide.topAnchor),
5656
layoutGuide.leadingAnchor.constraintEqualToAnchor(rootView.leadingAnchor),
57-
layoutGuide.trailingAnchor.constraintEqualToAnchor(rootView.trailingAnchor),
57+
layoutGuide.trailingAnchor.constraintEqualToAnchor(rootView.trailingAnchor)
5858
] as any);
5959

6060
return layoutGuide;
@@ -94,7 +94,7 @@ function layoutView(controller: IUILayoutViewController, owner: View): void {
9494
const top = marginTop + position.top;
9595
const width = owner.getMeasuredWidth();
9696
const height = owner.getMeasuredHeight();
97-
View.layoutChild(null, owner, position.left, top, position.left + width + marginLeft+ marginRight, position.top + height+ marginBottom);
97+
View.layoutChild(null, owner, position.left, top, position.left + width + marginLeft + marginRight, position.top + height + marginBottom);
9898

9999
const effectiveWidth = width + marginLeft + marginRight;
100100
let effectiveHeight = height + top + marginBottom;

0 commit comments

Comments
 (0)