refactor(FE): Remove handleBlurField call on week change

This commit is contained in:
rstubryan
2026-02-05 15:47:05 +07:00
parent 70a9fa15ec
commit d5eeadc9a7
2 changed files with 0 additions and 2 deletions
@@ -522,7 +522,6 @@ const DeliveryOrderProductForm = ({
} }
onChange={(val) => { onChange={(val) => {
formik.setFieldValue('week', val); formik.setFieldValue('week', val);
handleBlurField('week');
}} }}
placeholder='Pilih Week' placeholder='Pilih Week'
/> />
@@ -478,7 +478,6 @@ const SalesOrderProductForm = ({
} }
onChange={(val) => { onChange={(val) => {
formik.setFieldValue('week', val); formik.setFieldValue('week', val);
handleBlurField('week');
}} }}
placeholder='Pilih Week' placeholder='Pilih Week'
/> />