aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/app/components/nav
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/app/components/nav')
-rw-r--r--server/sonar-web/src/main/js/app/components/nav/global/GlobalNavBranding.tsx9
1 files changed, 0 insertions, 9 deletions
diff --git a/server/sonar-web/src/main/js/app/components/nav/global/GlobalNavBranding.tsx b/server/sonar-web/src/main/js/app/components/nav/global/GlobalNavBranding.tsx
index b5808ff7693..2706aa5cffb 100644
--- a/server/sonar-web/src/main/js/app/components/nav/global/GlobalNavBranding.tsx
+++ b/server/sonar-web/src/main/js/app/components/nav/global/GlobalNavBranding.tsx
@@ -41,15 +41,6 @@ export function GlobalNavBranding({ customLogoUrl, customLogoWidth }: StateProps
);
}
-export function SonarCloudNavBranding() {
- return (
- <GlobalNavBranding
- customLogoUrl={`${getBaseUrl()}/images/sonarcloud-logo.svg`}
- customLogoWidth={105}
- />
- );
-}
-
const mapStateToProps = (state: Store): StateProps => {
const customLogoUrl = getGlobalSettingValue(state, 'sonar.lf.logoUrl');
const customLogoWidth = getGlobalSettingValue(state, 'sonar.lf.logoWidthPx');