From 2e972b53d95d4c50301843245c19ff03b8cb4784 Mon Sep 17 00:00:00 2001 From: Charlie Scheer Date: Thu, 25 Jul 2024 11:29:55 -0600 Subject: [PATCH] Fixed issue going to link invalid view back made auth not clickable --- Simplenote/AuthWindowController.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Simplenote/AuthWindowController.swift b/Simplenote/AuthWindowController.swift index 27487b96f..41ddf6ba9 100644 --- a/Simplenote/AuthWindowController.swift +++ b/Simplenote/AuthWindowController.swift @@ -78,8 +78,9 @@ extension AuthWindowController { } let authViewController = AuthViewController() + let navigationController = SPNavigationController(initialViewController: authViewController) authViewController.authenticator = authenticator - window.transition(to: authViewController) + window.transition(to: navigationController) } func switchToMagicLinkRequestedUI(email: String) {