From a71a7bb56f15f6f39dff5acafc1d266d096d2b1b Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 27 May 2026 00:57:04 +0000 Subject: [PATCH] Sort n8n user operation options Reorder the user operation list so the n8n lint rule requiring\nalphabetized option labels passes after introducing the Archive\noperation. Signed-off-by: Cursor Agent --- packages/n8n-node/nodes/Probo/actions/user/index.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/n8n-node/nodes/Probo/actions/user/index.ts b/packages/n8n-node/nodes/Probo/actions/user/index.ts index e5bd1b998..12147831b 100644 --- a/packages/n8n-node/nodes/Probo/actions/user/index.ts +++ b/packages/n8n-node/nodes/Probo/actions/user/index.ts @@ -33,6 +33,12 @@ export const description: INodeProperties[] = [ }, }, options: [ + { + name: 'Archive', + value: 'removeUser', + description: 'Archive a user in the organization', + action: 'Archive a user', + }, { name: 'Create', value: 'createUser', @@ -57,12 +63,6 @@ export const description: INodeProperties[] = [ description: 'List all users in the organization', action: 'List users', }, - { - name: 'Archive', - value: 'removeUser', - description: 'Archive a user in the organization', - action: 'Archive a user', - }, { name: 'Update', value: 'updateUser',