Skip to content

Commit

Permalink
Removed download count from header in Release
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Oct 21, 2024
1 parent 5b6a04e commit e60acbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Release.astro
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ try {
{
release.assets?.length > 0 && (
<div>
<h4>Downloads ({formatNum(release.assets.reduce((total, { download_count }) => total + download_count, 0))} total)</h4>
<h4>Downloads</h4>
<p>
{release.assets?.map((asset: any) => (
<Asset {asset} />
Expand Down

0 comments on commit e60acbf

Please sign in to comment.