fix support

This commit is contained in:
hamid zarghami
2025-05-07 09:28:06 +03:30
parent 3b409a3c56
commit 4cac876ace
+15 -7
View File
@@ -63,7 +63,7 @@ const Support: FC = () => {
data?.data?.supportPlans?.map((item: PlanItemType) => {
return (
<div key={item.id} className='flex-1 flex flex-col items-center'>
<div className='text-center w-full'>
<div className='text-center flex flex-col flex-1 w-full'>
<div className='font-bold'>
{item.name}
</div>
@@ -74,12 +74,14 @@ const Support: FC = () => {
{item.price === 0 ? 'رایگان' : NumberFormat(item.price)}
</div>
<div className='mt-1 text-sm'>
تومان
{item.price === 0 ? ' ' : 'تومان'}
</div>
<BuyPlan
id={item.id}
/>
<div className='flex-1 flex items-end'>
<BuyPlan
id={item.id}
/>
</div>
</div>
</div>
)
@@ -115,7 +117,10 @@ const Support: FC = () => {
:
<CloseCircle className='xl:size-8 size-6' color='#D50303' variant='Bold' />
:
<div className='text-xs'>{row.featureValue}</div>
<div className='text-xs'>
{row.featureValue}
{row.featureKey === 'ticket_limit' && ' (روزانه)'}
</div>
}
</div>
))
@@ -160,7 +165,10 @@ const Support: FC = () => {
:
<CloseCircle className='size-6' color='#D50303' variant='Bold' />
:
<div className='text-sm'>{row.featureValue}</div>
<div className='text-sm'>
{row.featureValue}
{row.featureKey === 'ticket_limit' && ' (روزانه)'}
</div>
}
</div>
))