Skip to content

Commit

Permalink
Remove duplicate arg aliases from database list (#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptpaterson authored Dec 12, 2024
1 parent 2071e2e commit 0c7a40d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/commands/database/list.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -78,7 +77,7 @@ async function listDatabases(argv) {
}

function buildListCommand(yargs) {
return yargsWithCommonQueryOptions(yargs)
return yargs
.options({
pageSize: {
type: "number",
Expand Down

0 comments on commit 0c7a40d

Please sign in to comment.