diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-09-20 14:41:18 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-09-20 14:41:18 +0700 |
| commit | 5b0a6e9c8660c5cc427a66bd2540206513225075 (patch) | |
| tree | cff81d091b2a79ed5c370c3a30838888df316967 /src/lib | |
| parent | ee88c2f776f5dbacfacb78d3a2f04155e0d93a15 (diff) | |
<iman> delete console log
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/auth/components/CompanyProfile.jsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/auth/components/CompanyProfile.jsx b/src/lib/auth/components/CompanyProfile.jsx index 6d5790b4..80b424dc 100644 --- a/src/lib/auth/components/CompanyProfile.jsx +++ b/src/lib/auth/components/CompanyProfile.jsx @@ -54,7 +54,6 @@ const CompanyProfile = () => { useEffect(() => { const loadProfile = async () => { const dataProfile = await addressApi({ id: auth.parentId }); - console.log('dataProfile', dataProfile); setValue('name', dataProfile.name); setValue('industry', dataProfile.industryId); setValue('companyType', dataProfile.companyTypeId); @@ -67,7 +66,6 @@ const CompanyProfile = () => { }, [auth, setValue]); const onSubmitHandler = async (values) => { - console.log('values', values); if (changeConfirmation) { const data = { ...values, |
