mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 10:15:10 +00:00
upd: fix returns
This commit is contained in:
parent
4b31004c2b
commit
939f07fa55
1 changed files with 3 additions and 3 deletions
|
@ -44,8 +44,8 @@ export async function warningExternalWebsite(url: string) {
|
|||
|
||||
if (confirm.canceled) return false;
|
||||
|
||||
window.open(url, '_blank', 'nofollow noopener popup=false');
|
||||
return window.open(url, '_blank', 'nofollow noopener popup=false');
|
||||
}
|
||||
|
||||
return true;
|
||||
return window.open(url, '_blank', 'nofollow noopener popup=false');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue