| Index: ios/chrome/browser/ui/payments/payment_request_selector_view_controller.mm
|
| diff --git a/ios/chrome/browser/ui/payments/payment_request_selector_view_controller.mm b/ios/chrome/browser/ui/payments/payment_request_selector_view_controller.mm
|
| index f4cca16f00ea60c914122729641f38ba850512b9..e47d89f1f304fbe641b44f892c83c4dd49464851 100644
|
| --- a/ios/chrome/browser/ui/payments/payment_request_selector_view_controller.mm
|
| +++ b/ios/chrome/browser/ui/payments/payment_request_selector_view_controller.mm
|
| @@ -188,16 +188,14 @@ typedef NS_ENUM(NSInteger, ItemType) {
|
| [self.dataSource
|
| selectableItemAtIndex:self.dataSource.selectedItemIndex]);
|
| oldSelectedItem.accessoryType = MDCCollectionViewCellAccessoryNone;
|
| - [self reconfigureCellsForItems:@[ oldSelectedItem ]
|
| - inSectionWithIdentifier:SectionIdentifierItems];
|
| + [self reconfigureCellsForItems:@[ oldSelectedItem ]];
|
| }
|
|
|
| // Update the newly selected cell.
|
| CollectionViewItem<PaymentsHasAccessoryType>* newSelectedItem =
|
| reinterpret_cast<CollectionViewItem<PaymentsHasAccessoryType>*>(item);
|
| newSelectedItem.accessoryType = MDCCollectionViewCellAccessoryCheckmark;
|
| - [self reconfigureCellsForItems:@[ newSelectedItem ]
|
| - inSectionWithIdentifier:SectionIdentifierItems];
|
| + [self reconfigureCellsForItems:@[ newSelectedItem ]];
|
|
|
| // Notify the delegate of the selection.
|
| NSUInteger index =
|
|
|