Skip to content

Commit fe82fcd

Browse files
committed
fix: use accurate spinner message for single-project fetch
1 parent f2a6847 commit fe82fcd

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/commands/project/list.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -395,10 +395,7 @@ export async function handleExplicit(
395395
flags: ListFlags
396396
): Promise<ListResult<ProjectWithOrg>> {
397397
const projectResult = await withProgress(
398-
{
399-
message: `Fetching projects (up to ${flags.limit})...`,
400-
json: flags.json,
401-
},
398+
{ message: "Fetching project...", json: flags.json },
402399
() => withAuthGuard(() => getProject(org, projectSlug))
403400
);
404401
if (!projectResult.ok) {

0 commit comments

Comments
 (0)