We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fe616b commit aed757fCopy full SHA for aed757f
modules/open-url/open-url.js
@@ -82,7 +82,7 @@ export function openUrlInBrowser({url, id}: {url: string, id?: string}) {
82
function promptConfirm(url: string) {
83
const app = appName()
84
const title = `Leaving ${app}`
85
- const detail = `A web page will be opened in a browser outside of ${app}. Are you sure you want to open it?`
+ const detail = `A web page will be opened in a browser outside of ${app}.`
86
Alert.alert(title, detail, [
87
{text: 'Cancel', onPress: () => {}},
88
{text: 'Open', onPress: () => genericOpen(url)},
0 commit comments