Skip to content

Commit ba617d8

Browse files
committed
fix(billing): point enterprise Talk to sales at Cal.com instead of Typeform
1 parent 13aaf03 commit ba617d8

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

  • apps/sim/app/workspace/[workspaceId]/upgrade

apps/sim/app/workspace/[workspaceId]/upgrade/upgrade.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ import {
3737
} from '@/app/workspace/[workspaceId]/upgrade/search-params'
3838
import { useFullscreenOriginStore } from '@/stores/fullscreen-origin'
3939

40-
const TYPEFORM_ENTERPRISE_URL = 'https://form.typeform.com/to/jqCO12pF' as const
40+
/** Enterprise "Talk to sales" books time with the sales team on Cal.com. */
41+
const SALES_CAL_URL = 'https://cal.com/emirkarabeg/sim-team' as const
4142

4243
/**
4344
* Props for {@link Upgrade}.
@@ -149,7 +150,7 @@ export function Upgrade({ workspaceId }: UpgradeProps) {
149150
const onClick = (): void => {
150151
switch (cta.intent) {
151152
case 'sales':
152-
window.open(TYPEFORM_ENTERPRISE_URL, '_blank')
153+
window.open(SALES_CAL_URL, '_blank', 'noopener,noreferrer')
153154
return
154155
case 'downgrade':
155156
void state.onUpgradeToOtherTier()

0 commit comments

Comments
 (0)