| Index: ios/chrome/browser/payments/shipping_option_selection_view_controller.mm
|
| diff --git a/ios/chrome/browser/payments/shipping_option_selection_view_controller.mm b/ios/chrome/browser/payments/shipping_option_selection_view_controller.mm
|
| index 9abf8dc0034f9bcfecfe0b1d8c2cfc3bd2c77d86..70f0d5f76ccabc3434526257645ce6e369dff8be 100644
|
| --- a/ios/chrome/browser/payments/shipping_option_selection_view_controller.mm
|
| +++ b/ios/chrome/browser/payments/shipping_option_selection_view_controller.mm
|
| @@ -67,7 +67,7 @@ typedef NS_ENUM(NSInteger, ItemType) {
|
|
|
| @implementation ShippingOptionSelectionViewController
|
|
|
| -@synthesize isLoading = _isLoading;
|
| +@synthesize isPending = _isPending;
|
| @synthesize errorMessage = _errorMessage;
|
|
|
| - (instancetype)initWithPaymentRequest:(PaymentRequest*)paymentRequest {
|
| @@ -110,7 +110,7 @@ typedef NS_ENUM(NSInteger, ItemType) {
|
|
|
| [model addSectionWithIdentifier:SectionIdentifierShippingOption];
|
|
|
| - if (self.isLoading) {
|
| + if (self.isPending) {
|
| StatusItem* statusItem = [[StatusItem alloc] initWithType:ItemTypeSpinner];
|
| statusItem.text =
|
| l10n_util::GetNSString(IDS_IOS_PAYMENT_REQUEST_CHECKING_LABEL);
|
|
|