fix: don't open a window for external apps (#17813)

This prevents empty windows like the following to happen:

![image](https://github.com/user-attachments/assets/0a444938-316e-4d48-bdfc-770d1b4b2bf0)
This commit is contained in:
Bruno Quaresma
2025-05-14 08:41:33 -03:00
committed by GitHub
parent 67e40244a4
commit c71839294b
+4
View File
@@ -55,6 +55,10 @@ export const useAppLink = (
window.addEventListener("blur", () => {
clearTimeout(openAppExternallyFailed);
});
// External apps don't support open_in since they only should open
// external apps.
return;
}
switch (app.open_in) {