anpassen der Pläne
This commit is contained in:
@ -46,7 +46,7 @@ export const PlanTag = ({
|
||||
data-testid="starter-plan-tag"
|
||||
{...props}
|
||||
>
|
||||
Starter
|
||||
Duo
|
||||
</Tag>
|
||||
)
|
||||
}
|
||||
@ -57,7 +57,7 @@ export const PlanTag = ({
|
||||
data-testid="free-plan-tag"
|
||||
{...props}
|
||||
>
|
||||
Free
|
||||
Starter
|
||||
</Tag>
|
||||
)
|
||||
}
|
||||
@ -68,7 +68,7 @@ export const PlanTag = ({
|
||||
data-testid="custom-plan-tag"
|
||||
{...props}
|
||||
>
|
||||
Custom
|
||||
Expert
|
||||
</Tag>
|
||||
)
|
||||
}
|
||||
@ -79,7 +79,7 @@ export const PlanTag = ({
|
||||
data-testid="custom-unlimite-tag"
|
||||
{...props}
|
||||
>
|
||||
Unlimited
|
||||
BLS media - intern
|
||||
</Tag>
|
||||
)
|
||||
}
|
||||
|
@ -4,7 +4,7 @@ export const planToReadable = (plan?: Plan) => {
|
||||
if (!plan) return
|
||||
switch (plan) {
|
||||
case Plan.FREE:
|
||||
return 'Free'
|
||||
return 'Starter'
|
||||
case Plan.LIFETIME:
|
||||
return 'Lifetime'
|
||||
case Plan.OFFERED:
|
||||
@ -12,6 +12,6 @@ export const planToReadable = (plan?: Plan) => {
|
||||
case Plan.PRO:
|
||||
return 'Pro'
|
||||
case Plan.UNLIMITED:
|
||||
return 'Unlimited'
|
||||
return 'BLS media - intern'
|
||||
}
|
||||
}
|
||||
|
@ -7,9 +7,9 @@ export const prices = {
|
||||
} as const
|
||||
|
||||
export const chatsLimits = {
|
||||
[Plan.FREE]: 200,
|
||||
[Plan.STARTER]: 2000,
|
||||
[Plan.PRO]: 10000,
|
||||
[Plan.FREE]: 150,
|
||||
[Plan.STARTER]: 500,
|
||||
[Plan.PRO]: 2000,
|
||||
} as const
|
||||
|
||||
export const seatsLimits = {
|
||||
|
Reference in New Issue
Block a user