Add return (don't show error box when deep link is handled)

This commit is contained in:
Will Chen
2025-04-23 16:45:03 -07:00
parent 7402f33b4a
commit 38005c5dea

View File

@@ -183,6 +183,7 @@ function handleDeepLinkReturn(url: string) {
type: parsed.hostname, type: parsed.hostname,
url, url,
}); });
return;
} }
dialog.showErrorBox("Invalid deep link URL", url); dialog.showErrorBox("Invalid deep link URL", url);
} }