diff --git a/src/app/About/About.tsx b/src/app/About/About.tsx index 940e081e..9aeab241 100644 --- a/src/app/About/About.tsx +++ b/src/app/About/About.tsx @@ -18,7 +18,6 @@ import { Spinner } from '@patternfly/react-core'; import icon from '!!url-loader!@app/assets/favicons/ms-icon-310x310.png'; -import backgroundImage from '!!url-loader!@app/assets/images/infinispanbg_1200.png'; import { FacebookIcon, GithubIcon, @@ -29,8 +28,8 @@ import { import { global_spacer_lg } from '@patternfly/react-tokens'; import { useFetchVersion } from '@app/services/serverHook'; import { useTranslation } from 'react-i18next'; -import './About.css'; import { useEffect } from 'react'; +import './About.css'; const About = (props: { isModalOpen: boolean; closeModal: () => void }) => { const { t } = useTranslation(); @@ -62,7 +61,7 @@ const About = (props: { isModalOpen: boolean; closeModal: () => void }) => { brandImageSrc={icon} brandImageAlt={brandname + ' Logo'} productName={brandname} - backgroundImageSrc={backgroundImage} + // backgroundImageSrc={backgroundImage} > diff --git a/src/app/Welcome/Welcome.tsx b/src/app/Welcome/Welcome.tsx index c30fefd2..96aed7e2 100644 --- a/src/app/Welcome/Welcome.tsx +++ b/src/app/Welcome/Welcome.tsx @@ -24,7 +24,6 @@ import { CatalogIcon, DownloadIcon, GithubIcon, UnknownIcon } from '@patternfly/ import { chart_color_blue_500, chart_global_Fill_Color_white } from '@patternfly/react-tokens'; import { ConsoleBackground } from '@app/Common/ConsoleBackground/ConsoleBackground'; import { Support } from '@app/Support/Support'; -import { KeycloakService } from '@services/keycloakService'; import { useTranslation } from 'react-i18next'; import { ConsoleServices } from '@services/ConsoleServices'; import { useNavigate } from 'react-router';