diff --git a/src/app/features/settings/about/About.tsx b/src/app/features/settings/about/About.tsx index ec1d4da61..246f871a3 100644 --- a/src/app/features/settings/about/About.tsx +++ b/src/app/features/settings/about/About.tsx @@ -8,6 +8,7 @@ import pkg from '../../../../../package.json'; import { clearCacheAndReload } from '../../../../client/initMatrix'; import { useMatrixClient } from '../../../hooks/useMatrixClient'; import { getOriginBaseUrl, withOriginBaseUrl } from '../../../pages/pathUtils'; + const LotusLogo = withOriginBaseUrl(getOriginBaseUrl(), '/Lotus.png'); type MSC1929Contact = { diff --git a/src/app/pages/auth/AuthLayout.tsx b/src/app/pages/auth/AuthLayout.tsx index 332605b0f..b57f82984 100644 --- a/src/app/pages/auth/AuthLayout.tsx +++ b/src/app/pages/auth/AuthLayout.tsx @@ -30,6 +30,7 @@ import { AuthFlowsProvider } from '../../hooks/useAuthFlows'; import { AuthServerProvider } from '../../hooks/useAuthServer'; import { tryDecodeURIComponent } from '../../utils/dom'; import { getOriginBaseUrl, withOriginBaseUrl } from '../pathUtils'; + const LotusLogo = withOriginBaseUrl(getOriginBaseUrl(), '/Lotus.png'); const currentAuthPath = (pathname: string): string => { diff --git a/src/app/pages/auth/oidc/oidcConfig.ts b/src/app/pages/auth/oidc/oidcConfig.ts index 9c8e19371..69733eb16 100644 --- a/src/app/pages/auth/oidc/oidcConfig.ts +++ b/src/app/pages/auth/oidc/oidcConfig.ts @@ -1,6 +1,7 @@ import type { OidcRegistrationClientMetadata } from 'matrix-js-sdk'; import { OIDC_CALLBACK_PATH } from '../../paths'; import { getOriginBaseUrl, withOriginBaseUrl } from '../../pathUtils'; + const LotusLogo = withOriginBaseUrl(getOriginBaseUrl(), '/Lotus.png'); /** diff --git a/src/app/pages/client/ClientNonUIFeatures.tsx b/src/app/pages/client/ClientNonUIFeatures.tsx index 879374ce2..e6863f3d5 100644 --- a/src/app/pages/client/ClientNonUIFeatures.tsx +++ b/src/app/pages/client/ClientNonUIFeatures.tsx @@ -69,6 +69,7 @@ import { shouldNotifyThreadReply, THREAD_NOTIFICATIONS_FALLBACK_BEHAVIOR, } from '../../utils/threadNotifications'; + const LogoSVG = withOriginBaseUrl(getOriginBaseUrl(), '/lotus.png'); const LogoUnreadSVG = withOriginBaseUrl(getOriginBaseUrl(), '/lotus-unread.png'); const LogoHighlightSVG = withOriginBaseUrl(getOriginBaseUrl(), '/lotus-highlight.png'); diff --git a/src/app/pages/client/WelcomePage.tsx b/src/app/pages/client/WelcomePage.tsx index 9e5a3e122..20dfe3b4c 100644 --- a/src/app/pages/client/WelcomePage.tsx +++ b/src/app/pages/client/WelcomePage.tsx @@ -3,6 +3,7 @@ import { Box, Button, Icon, Icons, Text, config, toRem } from 'folds'; import { Page, PageHero, PageHeroSection } from '../../components/page'; import pkg from '../../../../package.json'; import { getOriginBaseUrl, withOriginBaseUrl } from '../pathUtils'; + const LotusLogo = withOriginBaseUrl(getOriginBaseUrl(), '/Lotus.png'); export function WelcomePage() {