diff --git a/app/components/auth.tsx b/app/components/auth.tsx index 5375bda3f..d254decdf 100644 --- a/app/components/auth.tsx +++ b/app/components/auth.tsx @@ -27,10 +27,6 @@ export function AuthPage() { const accessStore = useAccessStore(); const goHome = () => navigate(Path.Home); const goChat = () => navigate(Path.Chat); - const goSaas = () => { - trackAuthorizationPageButtonToCPaymentClick(); - window.location.href = SAAS_CHAT_URL; - }; const resetAccessCode = () => { accessStore.update((access) => { @@ -165,22 +161,6 @@ function TopBanner() { onMouseEnter={handleMouseEnter} onMouseLeave={handleMouseLeave} > -
- - - {Locale.Auth.TopTips} - { - trackSettingsPageGuideToCPaymentClick(); - }} - > - {Locale.Settings.Access.SaasStart.ChatNow} - - - -
{(isHovered || isMobile) && ( )} diff --git a/app/components/settings.tsx b/app/components/settings.tsx index ddbda1b73..ad1b08e84 100644 --- a/app/components/settings.tsx +++ b/app/components/settings.tsx @@ -700,19 +700,6 @@ export function Settings() { } subTitle={Locale.Settings.Access.SaasStart.SubTitle} > - } - type={"primary"} - text={Locale.Settings.Access.SaasStart.ChatNow} - onClick={() => { - trackSettingsPageGuideToCPaymentClick(); - window.location.href = SAAS_CHAT_URL; - }} - /> );