summaryrefslogtreecommitdiff
path: root/src/lib/auth/api
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2024-09-23 14:17:52 +0700
committerit-fixcomart <it@fixcomart.co.id>2024-09-23 14:17:52 +0700
commitf404f9801db1f234ae03ec9c9542ba5d4aa1bf46 (patch)
tree4269cf258ad49859d5c45ce44074cd127910a109 /src/lib/auth/api
parent4d9d8bd328675ce0a99359d7558553634c995f38 (diff)
<iman> delete console.log
Diffstat (limited to 'src/lib/auth/api')
-rw-r--r--src/lib/auth/api/switchAccountProgresApi.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/auth/api/switchAccountProgresApi.js b/src/lib/auth/api/switchAccountProgresApi.js
index ba1c35fa..6289a5dd 100644
--- a/src/lib/auth/api/switchAccountProgresApi.js
+++ b/src/lib/auth/api/switchAccountProgresApi.js
@@ -3,12 +3,10 @@ import { getAuth } from '@/core/utils/auth';
const switchAccountProgresApi = async () => {
const auth = getAuth();
- console.log('auth', auth);
const switchAccount = await odooApi(
'GET',
`/api/v1/user/${auth.partnerId}/switch_progres`
);
- console.log('switchAccount', switchAccount);
return switchAccount;
};