Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: don't open a window for external apps
  • Loading branch information
BrunoQuaresma committed May 13, 2025
commit 8ec41fa3595b9c6d1fe6b270d5d3dfe802b6bda8
4 changes: 4 additions & 0 deletions site/src/modules/apps/useAppLink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Loading