Skip to content

Commit

Permalink
fix(GiniHealthSDK): Fix inset to payment providers image collection view
Browse files Browse the repository at this point in the history
IPC-102
  • Loading branch information
razvancapra committed Mar 18, 2024
1 parent 4239bcb commit b8259f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ extension PaymentInfoViewController: UICollectionViewDelegateFlowLayout {
let padding = (contentWidth - totalCellWidth) / 2.0
return UIEdgeInsets(top: 0, left: padding, bottom: 0, right: padding)
} else {
return UIEdgeInsets(top: 0, left: Constants.leftRightPadding, bottom: 0, right: 0)
return UIEdgeInsets(top: 0, left: Constants.leftRightPadding, bottom: 0, right: Constants.leftRightPadding)
}
}
return UIEdgeInsets.zero
Expand Down

0 comments on commit b8259f8

Please sign in to comment.