From 5ce58dbab1c2ac6e2d4fb06a0cd5d8ef9b22ce20 Mon Sep 17 00:00:00 2001
From: Dalton <daltojohnso@users.noreply.github.com>
Date: Fri, 25 Feb 2022 14:40:16 -0800
Subject: [PATCH] Make auth page scene img src relative (#20733)

---
 .../src/metabase/auth/components/AuthLayout/AuthLayout.tsx    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/frontend/src/metabase/auth/components/AuthLayout/AuthLayout.tsx b/frontend/src/metabase/auth/components/AuthLayout/AuthLayout.tsx
index 643f8a043ec..f27c7431b54 100644
--- a/frontend/src/metabase/auth/components/AuthLayout/AuthLayout.tsx
+++ b/frontend/src/metabase/auth/components/AuthLayout/AuthLayout.tsx
@@ -19,8 +19,8 @@ const AuthLayout = ({ showScene, children }: AuthLayoutProps): JSX.Element => {
       {showScene && (
         <LayoutScene>
           <LayoutSceneImage
-            src="/app/img/bridge.png"
-            srcSet="/app/img/bridge.png 1x, /app/img/bridge@2x.png 2x, /app/img/bridge@3x.png 3x"
+            src="app/img/bridge.png"
+            srcSet="app/img/bridge.png 1x, app/img/bridge@2x.png 2x, app/img/bridge@3x.png 3x"
           />
         </LayoutScene>
       )}
-- 
GitLab