From ed00aba85bd1cd2ed02693d441eaefb90eb61431 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88?= Date: Fri, 13 Jun 2025 23:00:42 -0400 Subject: [PATCH] feat: further clarifying that you should close the window nullinside-development-group/twitch-streaming-tools#56 --- .../login-landing-desktop/login-landing-desktop.component.html | 3 +++ .../login-landing-desktop/login-landing-desktop.component.ts | 1 + 2 files changed, 4 insertions(+) diff --git a/src/src/app/view/login-landing-desktop/login-landing-desktop.component.html b/src/src/app/view/login-landing-desktop/login-landing-desktop.component.html index 9f9545d..2b1d79e 100644 --- a/src/src/app/view/login-landing-desktop/login-landing-desktop.component.html +++ b/src/src/app/view/login-landing-desktop/login-landing-desktop.component.html @@ -6,6 +6,9 @@ @if (loggedIn) {

LOGGED IN SUCCESSFULLY!

Please return to the desktop application...

+ } @else if (loading) { Logging in } @else { diff --git a/src/src/app/view/login-landing-desktop/login-landing-desktop.component.ts b/src/src/app/view/login-landing-desktop/login-landing-desktop.component.ts index 814f3a9..5b4956b 100644 --- a/src/src/app/view/login-landing-desktop/login-landing-desktop.component.ts +++ b/src/src/app/view/login-landing-desktop/login-landing-desktop.component.ts @@ -111,4 +111,5 @@ export class LoginLandingDesktopComponent implements OnInit { } protected readonly JSON = JSON; + protected readonly window = window; }