From 5f184e9e5e245a543f9db5588064e73cefda60ef Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Tue, 13 Jan 2026 16:35:27 -0800 Subject: [PATCH] support background image on org auth pages --- src/components/private/SplashImage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/private/SplashImage.tsx b/src/components/private/SplashImage.tsx index ad9d5069..576577c4 100644 --- a/src/components/private/SplashImage.tsx +++ b/src/components/private/SplashImage.tsx @@ -21,7 +21,7 @@ export default function SplashImage({ children }: SplashImageProps) { if (!env.branding.background_image_path) { return false; } - const pathsPrefixes = ["/auth/login", "/auth/signup", "/auth/resource"]; + const pathsPrefixes = ["/auth/login", "/auth/signup", "/auth/resource", "/auth/org"]; for (const prefix of pathsPrefixes) { if (pathname.startsWith(prefix)) { return true;