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