diff --git a/BraveRewardsUI/QA Settings/QASettingsViewController.swift b/BraveRewardsUI/QA Settings/QASettingsViewController.swift index 1209785922b..df6517ecb09 100644 --- a/BraveRewardsUI/QA Settings/QASettingsViewController.swift +++ b/BraveRewardsUI/QA Settings/QASettingsViewController.swift @@ -239,6 +239,9 @@ public class QASettingsViewController: TableViewController { guard let appSupportPath = NSSearchPathForDirectoriesInDomains(.applicationSupportDirectory, .userDomainMask, true).first else { return } let dbPath = (appSupportPath as NSString).appendingPathComponent("ledger/Rewards.db") let activity = UIActivityViewController(activityItems: [URL(fileURLWithPath: dbPath)], applicationActivities: nil) + if UIDevice.current.userInterfaceIdiom == .pad { + activity.popoverPresentationController?.sourceView = view + } self.present(activity, animated: true) }