Skip to content

Commit 15bf493

Browse files
authored
fix: linked issue description (#2730)
Signed-off-by: Adam Setch <adam.setch@outlook.com>
1 parent 0f759f2 commit 15bf493

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/renderer/components/metrics/LinkedIssuesPill.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const LinkedIssuesPill: FC<LinkedIssuesPillProps> = ({
2121
const description = formatMetricDescription(
2222
linkedIssues.length,
2323
'issue',
24-
(noun) => `Linked to ${noun}: ${linkedIssues.join(', ')}`,
24+
(_, noun) => `Linked to ${noun}: ${linkedIssues.join(', ')}`,
2525
);
2626

2727
return (

src/renderer/components/metrics/__snapshots__/LinkedIssuesPill.test.tsx.snap

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)