From bc4e412e3c0eaac221389aec50b4bdee7c42f376 Mon Sep 17 00:00:00 2001 From: tilacog Date: Tue, 6 Dec 2022 19:02:32 -0300 Subject: [PATCH] indexer-cli: Remove trailing dot for formatting consistency --- packages/indexer-cli/src/commands/indexer/actions/get.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/indexer-cli/src/commands/indexer/actions/get.ts b/packages/indexer-cli/src/commands/indexer/actions/get.ts index 89e45f0d8..41db0f108 100644 --- a/packages/indexer-cli/src/commands/indexer/actions/get.ts +++ b/packages/indexer-cli/src/commands/indexer/actions/get.ts @@ -144,7 +144,7 @@ module.exports = { if (!['undefined', 'string'].includes(typeof fields)) { throw Error( - `Invalid value for '--fields' option, must be a comma-separated list of field names.`, + `Invalid value for '--fields' option, must be a comma-separated list of field names`, ) } selectedFields = fields === undefined ? actionFields : validateFields(fields)