Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ios/ApplePayButtonComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ static PKPaymentButtonStyle PKButtonStyleFromString(const std::string &str) {

// MARK: - Fabric ComponentView

@interface ApplePayButtonComponentView : RCTViewComponentView
@interface BoltApplePayButtonComponentView : RCTViewComponentView
@end

@implementation ApplePayButtonComponentView {
@implementation BoltApplePayButtonComponentView {
PKPaymentButton *_paymentButton;
NSArray<NSLayoutConstraint *> *_buttonConstraints;
std::string _currentButtonType;
Expand Down Expand Up @@ -119,5 +119,5 @@ - (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const &

Class<RCTComponentViewProtocol> BoltApplePayButtonCls(void)
{
return ApplePayButtonComponentView.class;
return BoltApplePayButtonComponentView.class;
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
},
"ios": {
"componentProvider": {
"BoltApplePayButton": "ApplePayButtonComponentView"
"BoltApplePayButton": "BoltApplePayButtonComponentView"
}
}
},
Expand Down
Loading