Skip to content

Commit

Permalink
Remove duplicate arg aliases from database list
Browse files Browse the repository at this point in the history
  • Loading branch information
ptpaterson committed Dec 12, 2024
1 parent 45ddf9c commit 2d5b120
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 2d5b120

Please sign in to comment.