summaryrefslogtreecommitdiff
path: root/src/lib/auth/api/switchAccountProgresApi.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/auth/api/switchAccountProgresApi.js')
-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;
};