diff --git a/server/src/services/operatorCommandService/commands/resolvers.js b/server/src/services/operatorCommandService/commands/resolvers.js index b8ee2b01..ab412d76 100644 --- a/server/src/services/operatorCommandService/commands/resolvers.js +++ b/server/src/services/operatorCommandService/commands/resolvers.js @@ -146,7 +146,7 @@ function resolveIdentitySelector(selector, records = [], options = {}) { ], }); const results = fuse.search(query); - if (!results.length) return { error: buildResultError('not_found', 'Selector', candidates) }; + if (!results.length) return { error: buildResultError('not_found', 'User', candidates) }; const first = results[0]; const second = results[1];