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>({ const formik = useFormik<BuyServiceType>({
initialValues: { initialValues: {
businessName: '', businessName: '',
businessPhone: '',
description: '', description: '',
planId: planId ? planId : '', planId: planId ? planId : '',
serviceId: serviceId ? serviceId : '' serviceId: serviceId ? serviceId : ''
@@ -82,13 +81,13 @@ const BuyService: FC = () => {
error_text={formik.touched.businessName && formik.errors.businessName ? formik.errors.businessName : ''} error_text={formik.touched.businessName && formik.errors.businessName ? formik.errors.businessName : ''}
/> />
</div> </div>
<div className='mt-8'> {/* <div className='mt-8'>
<Input <Input
label={t('service.phone_business')} label={t('service.phone_business')}
{...formik.getFieldProps('businessPhone')} {...formik.getFieldProps('businessPhone')}
error_text={formik.touched.businessPhone && formik.errors.businessPhone ? formik.errors.businessPhone : ''} error_text={formik.touched.businessPhone && formik.errors.businessPhone ? formik.errors.businessPhone : ''}
/> />
</div> </div> */}
<div className='mt-8'> <div className='mt-8'>
<Textarea <Textarea
label={t('service.short_description')} label={t('service.short_description')}