mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-25 22:22:56 +03:00
chore(core): always display annually for cloud toggle (#8693)
This commit is contained in:
parent
de7b1ff516
commit
5b5dc26abf
@ -279,28 +279,18 @@ export const CloudPlans = () => {
|
|||||||
const cloudToggle = (
|
const cloudToggle = (
|
||||||
<div className={styles.recurringToggleWrapper}>
|
<div className={styles.recurringToggleWrapper}>
|
||||||
<div>
|
<div>
|
||||||
{recurring === SubscriptionRecurring.Yearly ? (
|
<div className={styles.recurringToggleRecurring}>
|
||||||
<div className={styles.recurringToggleRecurring}>
|
<span>
|
||||||
{t['com.affine.payment.cloud.pricing-plan.toggle-yearly']()}
|
{t['com.affine.payment.cloud.pricing-plan.toggle-billed-yearly']()}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
{yearlyDiscount ? (
|
||||||
|
<div className={styles.recurringToggleDiscount}>
|
||||||
|
{t['com.affine.payment.cloud.pricing-plan.toggle-discount']({
|
||||||
|
discount: yearlyDiscount,
|
||||||
|
})}
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : null}
|
||||||
<>
|
|
||||||
<div className={styles.recurringToggleRecurring}>
|
|
||||||
<span>
|
|
||||||
{t[
|
|
||||||
'com.affine.payment.cloud.pricing-plan.toggle-billed-yearly'
|
|
||||||
]()}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
{yearlyDiscount ? (
|
|
||||||
<div className={styles.recurringToggleDiscount}>
|
|
||||||
{t['com.affine.payment.cloud.pricing-plan.toggle-discount']({
|
|
||||||
discount: yearlyDiscount,
|
|
||||||
})}
|
|
||||||
</div>
|
|
||||||
) : null}
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
<Switch
|
<Switch
|
||||||
checked={recurring === SubscriptionRecurring.Yearly}
|
checked={recurring === SubscriptionRecurring.Yearly}
|
||||||
|
Loading…
Reference in New Issue
Block a user