From d1d87eaf9574db14844f8ea540c79324d1f1dd01 Mon Sep 17 00:00:00 2001 From: junaidiqbalmoj Date: Thu, 28 Nov 2024 13:31:48 +0000 Subject: [PATCH] fix typo --- .../reform/pip/account/management/service/AuditService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/uk/gov/hmcts/reform/pip/account/management/service/AuditService.java b/src/main/java/uk/gov/hmcts/reform/pip/account/management/service/AuditService.java index 364b98a8..be70fd6a 100644 --- a/src/main/java/uk/gov/hmcts/reform/pip/account/management/service/AuditService.java +++ b/src/main/java/uk/gov/hmcts/reform/pip/account/management/service/AuditService.java @@ -43,7 +43,7 @@ public AuditService(AuditRepository auditRepository) { public Page getAllAuditLogs(Pageable pageable, String email, String userId, List auditActions, String filterDate) { - // If user provenance id is supplied then find by an exact match + // If user id is supplied then find by an exact match String userIdToQuery = "%%"; if (!userId.isBlank()) { userIdToQuery = userId;