From 3ce00867619ee7d36f8a08108d1f7bf24de775b1 Mon Sep 17 00:00:00 2001 From: Haileyesus Date: Mon, 23 Feb 2026 11:53:11 +0300 Subject: [PATCH] fix(shell): remove unnecessary attributes from window.open for auth URL --- src/components/shell/hooks/useShellRuntime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shell/hooks/useShellRuntime.ts b/src/components/shell/hooks/useShellRuntime.ts index c334287..7334329 100644 --- a/src/components/shell/hooks/useShellRuntime.ts +++ b/src/components/shell/hooks/useShellRuntime.ts @@ -68,7 +68,7 @@ export function useShellRuntime({ return false; } - const popup = window.open(url, '_blank', 'noopener,noreferrer'); + const popup = window.open(url, '_blank'); if (popup) { try { popup.opener = null;