@@ -10,6 +10,7 @@ import * as Illustrations from '@components/Icon/Illustrations';
10
10
import Text from '@components/Text' ;
11
11
import TextLink from '@components/TextLink' ;
12
12
import useEnvironment from '@hooks/useEnvironment' ;
13
+ import useHasTeam2025Pricing from '@hooks/useHasTeam2025Pricing' ;
13
14
import useLocalize from '@hooks/useLocalize' ;
14
15
import usePreferredCurrency from '@hooks/usePreferredCurrency' ;
15
16
import useResponsiveLayout from '@hooks/useResponsiveLayout' ;
@@ -40,6 +41,7 @@ function UpgradeIntro({feature, onUpgrade, buttonDisabled, loading, isCategorizi
40
41
const { environmentURL} = useEnvironment ( ) ;
41
42
const subscriptionPlan = useSubscriptionPlan ( ) ;
42
43
const preferredCurrency = usePreferredCurrency ( ) ;
44
+ const hasTeam2025Pricing = useHasTeam2025Pricing ( ) ;
43
45
44
46
const formattedPrice = React . useMemo ( ( ) => {
45
47
const upgradeCurrency = Object . hasOwn ( CONST . SUBSCRIPTION_PRICES , preferredCurrency ) ? preferredCurrency : CONST . PAYMENT_CARD_CURRENCY . USD ;
@@ -102,7 +104,7 @@ function UpgradeIntro({feature, onUpgrade, buttonDisabled, loading, isCategorizi
102
104
< Text style = { [ styles . textNormal , styles . textSupporting ] } >
103
105
{ translate ( `workspace.upgrade.${ feature . id } .onlyAvailableOnPlan` ) }
104
106
< Text style = { [ styles . textSupporting , styles . textBold ] } > { formattedPrice } </ Text >
105
- { translate ( ` workspace.upgrade.pricing.perActiveMember` ) }
107
+ { hasTeam2025Pricing ? translate ( ' workspace.upgrade.pricing.perMember' ) : translate ( 'workspace.upgrade.pricing. perActiveMember' ) }
106
108
</ Text >
107
109
</ View >
108
110
< Button
0 commit comments