From 1e5743b1596276307f3028d5767488a7ffe11c4c Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sat, 1 Oct 2022 20:32:18 +0530 Subject: showing emails/phones as mailto: and tel: links --- src/classes/client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/classes') diff --git a/src/classes/client.js b/src/classes/client.js index 6785c90..842c5e5 100644 --- a/src/classes/client.js +++ b/src/classes/client.js @@ -67,6 +67,6 @@ export const getAllClients = (ok, fail) => { export const editClient = (client, ok, fail) => { axios.put(`/client/${client.Id}`, client) - .then(res => ok()) - .catch(err => fail()) + .then(res => ok(res)) + .catch(err => fail(err)) } -- cgit v1.2.3