Skip to content

Commit b600bbe

Browse files
committed
PR review updates
1 parent 7e6000c commit b600bbe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

WooCommerce/Classes/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ extension AppDelegate {
353353
return
354354
}
355355

356-
DDLogInfo("💬 Authenticated user does not have default store — launching store picker.")
356+
DDLogInfo("💬 Authenticated user does not have a Woo store selected — launching store picker.")
357357
storePickerCoordinator = StorePickerCoordinator(navigationController, config: .standard)
358358
storePickerCoordinator?.start()
359359
}

WooCommerce/Classes/Authentication/Epilogue/StorePickerViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ typealias SelectStoreClosure = () -> Void
99

1010
/// StorePickerViewControllerDelegate: the interface with operations related to the store picker
1111
///
12-
protocol StorePickerViewControllerDelegate: class {
12+
protocol StorePickerViewControllerDelegate: AnyObject {
1313

1414
/// Notifies the delegate that a store is about to be picked.
1515
///
@@ -523,7 +523,7 @@ extension StorePickerViewController: UITableViewDelegate {
523523
func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
524524

525525
// Preserve the Cell Height
526-
// Why: Because Autosizing Cells, upon reload, will need to be laid you yet again. This might cause
526+
// Why: Because Autosizing Cells, upon reload, will need to be laid out yet again. This might cause
527527
// UI glitches / unwanted animations. By preserving it, *then* the estimated will be extremely close to
528528
// the actual value. AKA no flicker!
529529
//

0 commit comments

Comments
 (0)