From accc662e1c01b884f65733f7a521bcd65e801364 Mon Sep 17 00:00:00 2001 From: Pablo Alba Date: Mon, 13 Jan 2025 19:13:36 +0100 Subject: [PATCH] :bug: Fix login is not shown on 404 --- frontend/src/app/main/ui/static.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/static.cljs b/frontend/src/app/main/ui/static.cljs index 50a3141e8..d892d0fde 100644 --- a/frontend/src/app/main/ui/static.cljs +++ b/frontend/src/app/main/ui/static.cljs @@ -476,7 +476,7 @@ request-access? (and - (= (:type data) :not-found) + (or (= (:type data) :not-found) (= (:type data) :authentication)) (or workspace? dashboard? view?) (or (:file-id info) (:team-id info)))]