From ebe9cc0e65ea7b25cf0390e6576fcbc9c13b7ae1 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 27 May 2026 00:37:07 +0000 Subject: [PATCH] Fix wsl spacing in remove user flow Add the required blank line before the profile-state conditional in\nOrganizationService.RemoveUser so the wsl_v5 lint rule passes in CI. Signed-off-by: Cursor Agent --- pkg/iam/organization_service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/iam/organization_service.go b/pkg/iam/organization_service.go index 07df36fb9..f0cca4e9b 100644 --- a/pkg/iam/organization_service.go +++ b/pkg/iam/organization_service.go @@ -350,6 +350,7 @@ func (s *OrganizationService) RemoveUser( } now := time.Now() + if profile.State != coredata.ProfileStateInactive { profile.State = coredata.ProfileStateInactive profile.UpdatedAt = now