Replies: 2 comments 1 reply
-
for staying in-app on link clicks change const handleExternalLink = url => {
invoke('plugin:shell|open', {
path: url,
});
}; to: const handleExternalLink = url => {
window.location.href = url;
}; |
Beta Was this translation helpful? Give feedback.
1 reply
-
You have to clone the repo and change it there yourself btw, i don't think you can set that when just using the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I created an app for binance.com.
When i click to the "auto-invest" it open my browser, but the domain is still binance.com (https://www.binance.com/en/auto-invest).
How can i set to always redirect instead of open the link with the browser if is the same domain?
pake-openbrowser.mp4
Beta Was this translation helpful? Give feedback.
All reactions