Skip to content

Commit af6d9a8

Browse files
committed
fix: address review comments from Seer and Bugbot
- Remove ?? 'auto' fallback in fetchIssuesForTarget so intentional undefined from buildListApiOptions flows through (Seer) - Refactor writeIssueTable to call willShowTrend() instead of duplicating the terminal width check inline (Bugbot)
1 parent aaa85be commit af6d9a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/issue/list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ async function fetchIssuesForTarget(
560560
{
561561
...options,
562562
projectId: target.projectId,
563-
groupStatsPeriod: options.groupStatsPeriod ?? "auto",
563+
groupStatsPeriod: options.groupStatsPeriod,
564564
}
565565
);
566566
return { target, issues, hasMore: !!nextCursor, nextCursor };

0 commit comments

Comments
 (0)