diff --git a/features/admin-branding-v1/components/branding-core.tsx b/features/admin-branding-v1/components/branding-core.tsx index f8785402477..8e80d21d731 100644 --- a/features/admin-branding-v1/components/branding-core.tsx +++ b/features/admin-branding-v1/components/branding-core.tsx @@ -27,11 +27,7 @@ import { ConfirmationModal, DangerZone, DangerZoneGroup, - DocumentationLink, - GenericIcon, Message, - PageLayout, - useDocumentation, useMediaContext } from "@wso2is/react-components"; import cloneDeep from "lodash-es/cloneDeep"; @@ -60,10 +56,8 @@ import { BrandingPreferenceInterface, BrandingPreferenceLayoutInterface, BrandingPreferenceThemeInterface, - PredefinedLayouts, - PredefinedThemes + PredefinedLayouts } from "../models"; -import BrandingPreferenceProvider from "../providers/branding-preference-provider"; import { BrandingPreferenceUtils } from "../utils"; /** @@ -71,11 +65,6 @@ import { BrandingPreferenceUtils } from "../utils"; */ type BrandingCoreInterface = IdentifiableComponentInterface; -/** - * Should show the org logo in the page title? - */ -const SHOW_ORGANIZATION_LOGO_IN_PAGE_TITLE: boolean = false; - /** * Branding core. * @@ -92,7 +81,6 @@ const BrandingCore: FunctionComponent = ( const { t } = useTranslation(); const dispatch: Dispatch = useDispatch(); - const { getLink } = useDocumentation(); const { isGreaterThanComputerViewport } = useMediaContext(); const { organizationType } = useGetCurrentOrganizationType();