Skip to content

Commit aed757f

Browse files
drewvolzhawkrives
authored andcommitted
Remove question from end of url alert
1 parent 1fe616b commit aed757f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/open-url/open-url.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export function openUrlInBrowser({url, id}: {url: string, id?: string}) {
8282
function promptConfirm(url: string) {
8383
const app = appName()
8484
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?`
85+
const detail = `A web page will be opened in a browser outside of ${app}.`
8686
Alert.alert(title, detail, [
8787
{text: 'Cancel', onPress: () => {}},
8888
{text: 'Open', onPress: () => genericOpen(url)},

0 commit comments

Comments
 (0)