We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a6a9a8 commit 6c9e72fCopy full SHA for 6c9e72f
src/web/services/auditTrailService.ts
@@ -20,7 +20,7 @@ export const GetUserAuditTrail = async (userId: number) => {
20
const result = await axios.get<AuditTrailDTO[]>(`/manage/${userId}/auditTrail`);
21
return result.data;
22
} catch (e: unknown) {
23
- throw backendError(e, 'Could not get audit trail.');
+ throw backendError(e, 'Could not get user audit trail.');
24
}
25
};
26
0 commit comments