diff --git a/web/app/components/custom/custom-app-header-brand/index.tsx b/web/app/components/custom/custom-app-header-brand/index.tsx
deleted file mode 100644
index 9564986c28..0000000000
--- a/web/app/components/custom/custom-app-header-brand/index.tsx
+++ /dev/null
@@ -1,62 +0,0 @@
-import { useTranslation } from 'react-i18next'
-import s from './style.module.css'
-import Button from '@/app/components/base/button'
-import { Grid01 } from '@/app/components/base/icons/src/vender/solid/layout'
-import { Container, Database01 } from '@/app/components/base/icons/src/vender/line/development'
-import { ImagePlus } from '@/app/components/base/icons/src/vender/line/images'
-import { useProviderContext } from '@/context/provider-context'
-import { Plan } from '@/app/components/billing/type'
-
-const CustomAppHeaderBrand = () => {
- const { t } = useTranslation()
- const { plan } = useProviderContext()
-
- return (
-
-
{t('custom.app.title')}
-
-
-
-
-
-
-
{t('custom.app.changeLogoTip')}
-
- )
-}
-
-export default CustomAppHeaderBrand
diff --git a/web/app/components/custom/custom-app-header-brand/style.module.css b/web/app/components/custom/custom-app-header-brand/style.module.css
deleted file mode 100644
index 492733ff9f..0000000000
--- a/web/app/components/custom/custom-app-header-brand/style.module.css
+++ /dev/null
@@ -1,3 +0,0 @@
-.mask {
- background: linear-gradient(95deg, rgba(255, 255, 255, 0.00) 43.9%, rgba(255, 255, 255, 0.80) 95.76%); ;
-}
\ No newline at end of file
diff --git a/web/app/components/custom/custom-page/index.tsx b/web/app/components/custom/custom-page/index.tsx
index c3b1e93da3..75d592389d 100644
--- a/web/app/components/custom/custom-page/index.tsx
+++ b/web/app/components/custom/custom-page/index.tsx
@@ -1,6 +1,5 @@
import { useTranslation } from 'react-i18next'
import CustomWebAppBrand from '../custom-web-app-brand'
-import CustomAppHeaderBrand from '../custom-app-header-brand'
import s from '../style.module.css'
import GridMask from '@/app/components/base/grid-mask'
import UpgradeBtn from '@/app/components/billing/upgrade-btn'
@@ -13,7 +12,6 @@ const CustomPage = () => {
const { plan, enableBilling } = useProviderContext()
const showBillingTip = enableBilling && plan.type === Plan.sandbox
- const showCustomAppHeaderBrand = enableBilling && plan.type === Plan.sandbox
const showContact = enableBilling && (plan.type === Plan.professional || plan.type === Plan.team)
return (
@@ -32,14 +30,6 @@ const CustomPage = () => {
)
}
- {
- showCustomAppHeaderBrand && (
- <>
-
-
- >
- )
- }
{
showContact && (