Skip to content

Commit

Permalink
Fix printing null%
Browse files Browse the repository at this point in the history
  • Loading branch information
ghengeveld committed Dec 13, 2024
1 parent b98a73b commit fea6c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/addons/test/src/components/TestProviderRender.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ export const TestProviderRender: FC<
aria-label={`status: ${coverageSummary.status}`}
/>
}
right={`${coverageSummary.percentage}%`}
right={coverageSummary.percentage ?? `${coverageSummary.percentage}%`}
/>
) : (
<ListItem
Expand Down

0 comments on commit fea6c62

Please sign in to comment.