CSRF refresh fixes

This commit is contained in:
Darren Clarke 2024-08-14 13:03:50 +02:00
parent a8dc0b3647
commit f0e8e20c24
15 changed files with 12111 additions and 51665 deletions

View file

@ -18,7 +18,7 @@ export const getAgentsAction = async () => {
return formattedAgents;
} catch (e) {
console.error(e);
console.error(e.message);
return [];
}
};
@ -39,7 +39,7 @@ export const getCustomersAction = async () => {
return formattedCustomers;
} catch (e) {
console.error(e);
console.error(e.message);
return [];
}
};
@ -59,7 +59,7 @@ export const getUsersAction = async () => {
return formattedUsers;
} catch (e) {
console.error(e);
console.error(e.message);
return [];
}
};