Skip to content

Commit 6c9e72f

Browse files
fixed audit trail erorr
1 parent 5a6a9a8 commit 6c9e72f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/web/services/auditTrailService.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const GetUserAuditTrail = async (userId: number) => {
2020
const result = await axios.get<AuditTrailDTO[]>(`/manage/${userId}/auditTrail`);
2121
return result.data;
2222
} catch (e: unknown) {
23-
throw backendError(e, 'Could not get audit trail.');
23+
throw backendError(e, 'Could not get user audit trail.');
2424
}
2525
};
2626

0 commit comments

Comments
 (0)