fix support
This commit is contained in:
@@ -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,14 +74,16 @@ const Support: FC = () => {
|
||||
{item.price === 0 ? 'رایگان' : NumberFormat(item.price)}
|
||||
</div>
|
||||
<div className='mt-1 text-sm'>
|
||||
تومان
|
||||
{item.price === 0 ? ' ' : 'تومان'}
|
||||
</div>
|
||||
|
||||
<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>
|
||||
))
|
||||
|
||||
Reference in New Issue
Block a user