From d39b2aa6e5e89eadbe9118ad69f2b1d2783b7b2e Mon Sep 17 00:00:00 2001 From: Ryan Nystrom Date: Sat, 29 Dec 2018 13:28:24 -0500 Subject: [PATCH] add "ok" button to alert when bookmark sync fails --- Classes/Bookmark/BookmarkViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Classes/Bookmark/BookmarkViewController.swift b/Classes/Bookmark/BookmarkViewController.swift index e95d01304..67d80de7f 100644 --- a/Classes/Bookmark/BookmarkViewController.swift +++ b/Classes/Bookmark/BookmarkViewController.swift @@ -110,6 +110,7 @@ BookmarkHeaderSectionControllerDelegate { message: String.localizedStringWithFormat(messageFormat, errors), preferredStyle: .alert ) + alert.add(action: UIAlertAction(title: Constants.Strings.ok, style: .default)) present(alert, animated: trueUnlessReduceMotionEnabled) }