diff --git a/apps/storybook/package.json b/apps/storybook/package.json index c0afc17c2c..42cfe26afb 100644 --- a/apps/storybook/package.json +++ b/apps/storybook/package.json @@ -12,18 +12,18 @@ }, "devDependencies": { "@chromatic-com/storybook": "5.0.2", - "@storybook/addon-a11y": "10.3.5", - "@storybook/addon-docs": "10.3.5", - "@storybook/addon-links": "10.3.5", - "@storybook/addon-onboarding": "10.3.5", - "@storybook/react-vite": "10.3.5", + "@storybook/addon-a11y": "10.3.6", + "@storybook/addon-docs": "10.3.6", + "@storybook/addon-links": "10.3.6", + "@storybook/addon-onboarding": "10.3.6", + "@storybook/react-vite": "10.3.6", "@tailwindcss/vite": "4.2.4", "@typescript-eslint/eslint-plugin": "8.57.2", "@typescript-eslint/parser": "8.57.2", "@vitejs/plugin-react": "5.1.4", "eslint-plugin-react-refresh": "0.4.26", - "eslint-plugin-storybook": "10.3.5", - "storybook": "10.3.5", - "vite": "7.3.2" + "eslint-plugin-storybook": "10.3.6", + "storybook": "10.3.6", + "vite": "7.3.3" } } diff --git a/apps/web/app/(app)/environments/[environmentId]/settings/(account)/profile/page.tsx b/apps/web/app/(app)/environments/[environmentId]/settings/(account)/profile/page.tsx index 2e0c019805..0902d5021e 100644 --- a/apps/web/app/(app)/environments/[environmentId]/settings/(account)/profile/page.tsx +++ b/apps/web/app/(app)/environments/[environmentId]/settings/(account)/profile/page.tsx @@ -1,7 +1,12 @@ import { AuthenticationError } from "@formbricks/types/errors"; import { AccountSettingsNavbar } from "@/app/(app)/environments/[environmentId]/settings/(account)/components/AccountSettingsNavbar"; import { AccountSecurity } from "@/app/(app)/environments/[environmentId]/settings/(account)/profile/components/AccountSecurity"; -import { EMAIL_VERIFICATION_DISABLED, IS_FORMBRICKS_CLOUD, PASSWORD_RESET_DISABLED } from "@/lib/constants"; +import { + EMAIL_VERIFICATION_DISABLED, + ENTERPRISE_LICENSE_REQUEST_FORM_URL, + IS_FORMBRICKS_CLOUD, + PASSWORD_RESET_DISABLED, +} from "@/lib/constants"; import { getOrganizationsWhereUserIsSingleOwner } from "@/lib/organization/service"; import { getUser } from "@/lib/user/service"; import { getTranslate } from "@/lingodotdev/server"; @@ -71,7 +76,7 @@ const Page = async (props: { : t("common.request_trial_license"), href: IS_FORMBRICKS_CLOUD ? `/environments/${params.environmentId}/settings/billing` - : "https://formbricks.com/upgrade-self-hosting-license", + : ENTERPRISE_LICENSE_REQUEST_FORM_URL, }, { text: t("common.learn_more"), diff --git a/apps/web/app/(app)/environments/[environmentId]/settings/(organization)/enterprise/page.tsx b/apps/web/app/(app)/environments/[environmentId]/settings/(organization)/enterprise/page.tsx index 8713030128..82369798b7 100644 --- a/apps/web/app/(app)/environments/[environmentId]/settings/(organization)/enterprise/page.tsx +++ b/apps/web/app/(app)/environments/[environmentId]/settings/(organization)/enterprise/page.tsx @@ -3,7 +3,7 @@ import Link from "next/link"; import { notFound } from "next/navigation"; import { OrganizationSettingsNavbar } from "@/app/(app)/environments/[environmentId]/settings/(organization)/components/OrganizationSettingsNavbar"; import { EnterpriseLicenseStatus } from "@/app/(app)/environments/[environmentId]/settings/(organization)/enterprise/components/EnterpriseLicenseStatus"; -import { IS_FORMBRICKS_CLOUD } from "@/lib/constants"; +import { ENTERPRISE_LICENSE_REQUEST_FORM_URL, IS_FORMBRICKS_CLOUD } from "@/lib/constants"; import { getTranslate } from "@/lingodotdev/server"; import { GRACE_PERIOD_MS, getEnterpriseLicense } from "@/modules/ee/license-check/lib/license"; import { getEnvironmentAuth } from "@/modules/environments/lib/utils"; @@ -173,7 +173,7 @@ const Page = async (props: { params: Promise<{ environmentId: string }> }) => {