remove business phone

This commit is contained in:
hamid zarghami
2026-02-07 10:10:58 +03:30
parent 80d9c16073
commit 47b9b4b196
+2 -3
View File
@@ -26,7 +26,6 @@ const BuyService: FC = () => {
const formik = useFormik<BuyServiceType>({
initialValues: {
businessName: '',
businessPhone: '',
description: '',
planId: planId ? planId : '',
serviceId: serviceId ? serviceId : ''
@@ -82,13 +81,13 @@ const BuyService: FC = () => {
error_text={formik.touched.businessName && formik.errors.businessName ? formik.errors.businessName : ''}
/>
</div>
<div className='mt-8'>
{/* <div className='mt-8'>
<Input
label={t('service.phone_business')}
{...formik.getFieldProps('businessPhone')}
error_text={formik.touched.businessPhone && formik.errors.businessPhone ? formik.errors.businessPhone : ''}
/>
</div>
</div> */}
<div className='mt-8'>
<Textarea
label={t('service.short_description')}