${t('monthly_price', { value: Number(basePrice) / 100 })}
-
diff --git a/packages/console/src/components/Guide/GuideCard/index.tsx b/packages/console/src/components/Guide/GuideCard/index.tsx
index 389b94eb2..a5ce1ecfb 100644
--- a/packages/console/src/components/Guide/GuideCard/index.tsx
+++ b/packages/console/src/components/Guide/GuideCard/index.tsx
@@ -4,7 +4,7 @@ import { Suspense, useCallback, useContext } from 'react';
import { type Guide, type GuideMetadata } from '@/assets/docs/guides/types';
import FeatureTag from '@/components/FeatureTag';
-import { isCloud } from '@/consts/env';
+import { isCloud, isDevFeaturesEnabled } from '@/consts/env';
import { subscriptionPage } from '@/consts/pages';
import { TenantsContext } from '@/contexts/TenantsProvider';
import Button from '@/ds-components/Button';
@@ -77,7 +77,11 @@ function GuideCard({ data, onClick, hasBorder, hasButton }: Props) {
{name}
{hasPaywall && (
-
+
)}
diff --git a/packages/console/src/components/PlanDescription/index.tsx b/packages/console/src/components/PlanDescription/index.tsx
index 6f4878b91..b0e64f91d 100644
--- a/packages/console/src/components/PlanDescription/index.tsx
+++ b/packages/console/src/components/PlanDescription/index.tsx
@@ -1,6 +1,7 @@
import { ReservedPlanId } from '@logto/schemas';
import { type TFuncKey } from 'i18next';
+import { isDevFeaturesEnabled } from '@/consts/env';
import DynamicT from '@/ds-components/DynamicT';
const registeredPlanDescriptionPhrasesMap: Record<
@@ -8,7 +9,7 @@ const registeredPlanDescriptionPhrasesMap: Record<
TFuncKey<'translation', 'admin_console.subscription'> | undefined
> = {
[ReservedPlanId.Free]: 'free_plan_description',
- [ReservedPlanId.Hobby]: 'hobby_plan_description',
+ [ReservedPlanId.Hobby]: isDevFeaturesEnabled ? 'pro_plan_description' : 'hobby_plan_description',
[ReservedPlanId.Pro]: 'pro_plan_description',
};
diff --git a/packages/console/src/components/PlanName/index.tsx b/packages/console/src/components/PlanName/index.tsx
index 7bede25ad..44ffd7a1a 100644
--- a/packages/console/src/components/PlanName/index.tsx
+++ b/packages/console/src/components/PlanName/index.tsx
@@ -2,6 +2,7 @@ import { type TFuncKey } from 'i18next';
import { useTranslation } from 'react-i18next';
import titleize from 'titleize';
+import { isDevFeaturesEnabled } from '@/consts/env';
import { ReservedPlanName } from '@/types/subscriptions';
const registeredPlanNamePhraseMap: Record<
@@ -10,7 +11,8 @@ const registeredPlanNamePhraseMap: Record<
> = {
quotaKey: undefined,
[ReservedPlanName.Free]: 'free_plan',
- [ReservedPlanName.Hobby]: 'hobby_plan',
+ // Todo @xiaoyijun [Pricing] Remove feature flag
+ [ReservedPlanName.Hobby]: isDevFeaturesEnabled ? 'pro_plan' : 'hobby_plan',
[ReservedPlanName.Pro]: 'pro_plan',
[ReservedPlanName.Enterprise]: 'enterprise',
};
diff --git a/packages/console/src/consts/subscriptions.ts b/packages/console/src/consts/subscriptions.ts
index 2e1931703..da3122905 100644
--- a/packages/console/src/consts/subscriptions.ts
+++ b/packages/console/src/consts/subscriptions.ts
@@ -1,4 +1,7 @@
import { ReservedPlanId } from '@logto/schemas';
+import { condArray } from '@silverhand/essentials';
+
+import { isDevFeaturesEnabled as isDevelopmentFeaturesEnabled } from './env';
/**
* In console, only featured plans are shown in the plan selection component.
@@ -6,7 +9,8 @@ import { ReservedPlanId } from '@logto/schemas';
export const featuredPlanIds: string[] = [
ReservedPlanId.Free,
ReservedPlanId.Hobby,
- ReservedPlanId.Pro,
+ // Todo @xiaoyijun [Pricing] Remove feature flag
+ ...condArray(!isDevelopmentFeaturesEnabled && ReservedPlanId.Pro),
];
/**
diff --git a/packages/console/src/pages/Applications/components/GuideLibrary/index.tsx b/packages/console/src/pages/Applications/components/GuideLibrary/index.tsx
index 8f346ebc0..1858caf1c 100644
--- a/packages/console/src/pages/Applications/components/GuideLibrary/index.tsx
+++ b/packages/console/src/pages/Applications/components/GuideLibrary/index.tsx
@@ -9,7 +9,7 @@ import FeatureTag from '@/components/FeatureTag';
import { type SelectedGuide } from '@/components/Guide/GuideCard';
import GuideCardGroup from '@/components/Guide/GuideCardGroup';
import { useAppGuideMetadata } from '@/components/Guide/hooks';
-import { isCloud } from '@/consts/env';
+import { isCloud, isDevFeaturesEnabled } from '@/consts/env';
import { TenantsContext } from '@/contexts/TenantsProvider';
import { CheckboxGroup } from '@/ds-components/Checkbox';
import OverlayScrollbar from '@/ds-components/OverlayScrollbar';
@@ -105,7 +105,8 @@ function GuideLibrary({ className, hasCardBorder, hasCardButton, hasFilters }: P
diff --git a/packages/console/src/pages/Applications/components/TypeDescription/index.tsx b/packages/console/src/pages/Applications/components/TypeDescription/index.tsx
index 3a3ca99ec..4c855398f 100644
--- a/packages/console/src/pages/Applications/components/TypeDescription/index.tsx
+++ b/packages/console/src/pages/Applications/components/TypeDescription/index.tsx
@@ -4,7 +4,7 @@ import { useContext } from 'react';
import ApplicationIcon from '@/components/ApplicationIcon';
import FeatureTag from '@/components/FeatureTag';
-import { isCloud } from '@/consts/env';
+import { isCloud, isDevFeaturesEnabled } from '@/consts/env';
import { TenantsContext } from '@/contexts/TenantsProvider';
import useSubscriptionPlan from '@/hooks/use-subscription-plan';
@@ -34,7 +34,8 @@ function TypeDescription({ title, subtitle, description, type, size = 'large' }:
)}
diff --git a/packages/console/src/pages/Roles/components/CreateRoleForm/index.tsx b/packages/console/src/pages/Roles/components/CreateRoleForm/index.tsx
index e974046d3..ce521635f 100644
--- a/packages/console/src/pages/Roles/components/CreateRoleForm/index.tsx
+++ b/packages/console/src/pages/Roles/components/CreateRoleForm/index.tsx
@@ -13,6 +13,7 @@ import FeatureTag from '@/components/FeatureTag';
import PlanName from '@/components/PlanName';
import QuotaGuardFooter from '@/components/QuotaGuardFooter';
import RoleScopesTransfer from '@/components/RoleScopesTransfer';
+import { isDevFeaturesEnabled } from '@/consts/env';
import { TenantsContext } from '@/contexts/TenantsProvider';
import Button from '@/ds-components/Button';
import DynamicT from '@/ds-components/DynamicT';
@@ -229,7 +230,8 @@ function CreateRoleForm({ totalRoleCount, onClose }: Props) {