From 0c7a40d669648064fd5ad7265befbf26f0586041 Mon Sep 17 00:00:00 2001 From: Paul Paterson Date: Thu, 12 Dec 2024 13:02:20 -0500 Subject: [PATCH] Remove duplicate arg aliases from database list (#515) --- src/commands/database/list.mjs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/commands/database/list.mjs b/src/commands/database/list.mjs index 6a0ec135..f8845de1 100644 --- a/src/commands/database/list.mjs +++ b/src/commands/database/list.mjs @@ -3,7 +3,6 @@ import { FaunaError } from "fauna"; import { container } from "../../cli.mjs"; -import { yargsWithCommonQueryOptions } from "../../lib/command-helpers.mjs"; import { throwForError } from "../../lib/fauna.mjs"; import { FaunaAccountClient } from "../../lib/fauna-account-client.mjs"; import { colorize, Format } from "../../lib/formatting/colorize.mjs"; @@ -78,7 +77,7 @@ async function listDatabases(argv) { } function buildListCommand(yargs) { - return yargsWithCommonQueryOptions(yargs) + return yargs .options({ pageSize: { type: "number",