Skip to content

Commit f0b882f

Browse files
committed
Fix merge conflicts, part 2
1 parent 86afe3c commit f0b882f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WooCommerce/Classes/ViewRelated/Orders/OrderDetails/OrderDetailsViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ class OrderDetailsViewController: UIViewController {
5757
noteRows.append(.orderNote)
5858
}
5959
}
60-
let orderNotesSection = Section(title: NSLocalizedString("ORDER NOTES", comment: "Order notes section title"), footer: nil, rows: noteRows)
60+
let orderNotesSection = Section(titles: [NSLocalizedString("ORDER NOTES", comment: "Order notes section title")], footer: nil, rows: noteRows)
6161

62-
let paymentSection = Section(title: NSLocalizedString("PAYMENT", comment: "Payment section title"), footer: nil, rows: [.payment])
62+
let paymentSection = Section(titles: [NSLocalizedString("PAYMENT", comment: "Payment section title")], footer: nil, rows: [.payment])
6363

6464
// FIXME: this is temporary
6565
// the API response always sends customer note data

0 commit comments

Comments
 (0)