fix(ui): account details updates

This commit is contained in:
Shekar Siri 2023-06-12 17:06:43 +02:00
parent 01d7c3676d
commit f94740c59f

View file

@ -159,7 +159,7 @@ export function logout() {
export function updateClient(params) {
return {
types: PUT_CLIENT.toArray(),
call: client => client.put('/client', params),
call: client => client.post('/account', params),
params,
};
}