Skip to content

Commit

Permalink
🚨 Fix lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaatttt committed Jun 24, 2022
1 parent 65eadd5 commit e315537
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ extension ExperienceStepViewController {
// When nested inside the carousel traits collection view, the left and right safe area insets get doubled applied.
// This zeros out those values to achieve the desired layout.
override var safeAreaInsets: UIEdgeInsets {
get { UIEdgeInsets(top: super.safeAreaInsets.top, left: 0, bottom: super.safeAreaInsets.bottom, right: 0) }
UIEdgeInsets(top: super.safeAreaInsets.top, left: 0, bottom: super.safeAreaInsets.bottom, right: 0)
}

init() {
Expand Down

0 comments on commit e315537

Please sign in to comment.