diff --git a/App/Browser View/BrowserViewController.swift b/App/Browser View/BrowserViewController.swift index 3a9f039..6f08721 100644 --- a/App/Browser View/BrowserViewController.swift +++ b/App/Browser View/BrowserViewController.swift @@ -344,6 +344,10 @@ class BrowserViewController: UIViewController })) } + actionSheet.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: { _ in + actionSheet.dismiss(animated: true, completion: nil) + })) + present(actionSheet, animated: true, completion: nil) }