| Index: ios/chrome/browser/payments/shipping_address_selection_view_controller.mm | 
| diff --git a/ios/chrome/browser/payments/shipping_address_selection_view_controller.mm b/ios/chrome/browser/payments/shipping_address_selection_view_controller.mm | 
| index 8640d1d490ccec47ec389d2aa46da8c8c941b35d..0d887cce1ce85184989086fb5b1560283c06b3be 100644 | 
| --- a/ios/chrome/browser/payments/shipping_address_selection_view_controller.mm | 
| +++ b/ios/chrome/browser/payments/shipping_address_selection_view_controller.mm | 
| @@ -69,7 +69,7 @@ typedef NS_ENUM(NSInteger, ItemType) { | 
|  | 
| @implementation ShippingAddressSelectionViewController | 
|  | 
| -@synthesize isLoading = _isLoading; | 
| +@synthesize pending = _pending; | 
| @synthesize errorMessage = _errorMessage; | 
| @synthesize delegate = _delegate; | 
|  | 
| @@ -104,7 +104,7 @@ typedef NS_ENUM(NSInteger, ItemType) { | 
|  | 
| [model addSectionWithIdentifier:SectionIdentifierShippingAddress]; | 
|  | 
| -  if (_isLoading) { | 
| +  if (_pending) { | 
| StatusItem* statusItem = [[StatusItem alloc] initWithType:ItemTypeSpinner]; | 
| statusItem.text = | 
| l10n_util::GetNSString(IDS_IOS_PAYMENT_REQUEST_CHECKING_LABEL); | 
|  |