From 757de243195c6174feaa08592ca698ca89deb6d8 Mon Sep 17 00:00:00 2001 From: Andrew Sikowitz Date: Fri, 14 Nov 2025 09:48:01 -0800 Subject: [PATCH] fix(theme): Properly set logo url on ErrorSection.tsx --- datahub-web-react/src/app/shared/error/ErrorSection.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/datahub-web-react/src/app/shared/error/ErrorSection.tsx b/datahub-web-react/src/app/shared/error/ErrorSection.tsx index 5f0cb23d4bf74b..b693e9e8d44261 100644 --- a/datahub-web-react/src/app/shared/error/ErrorSection.tsx +++ b/datahub-web-react/src/app/shared/error/ErrorSection.tsx @@ -3,7 +3,8 @@ import React from 'react'; import styled, { useTheme } from 'styled-components'; import { ANTD_GRAY } from '@app/entity/shared/constants'; -import { resolveRuntimePath } from '@utils/runtimeBasePath'; + +import dataHubLogo from '@images/datahublogo.png'; const Section = styled.div` width: auto; @@ -60,7 +61,7 @@ const resources = [ export const ErrorSection = (): JSX.Element => { const themeConfig = useTheme(); - const themeLogo = resolveRuntimePath(themeConfig.assets.logoUrl || '@images/datahublogo.png'); + const themeLogo = themeConfig.assets.logoUrl || dataHubLogo; return (