@@ -5,7 +5,7 @@ import Breadcrumbs from "@mui/material/Breadcrumbs";
55import Link from "@mui/material/Link" ;
66import Typography from "@mui/material/Typography" ;
77import NavigateNextIcon from "@mui/icons-material/NavigateNext" ;
8- import AutoAwesomeIcon from "@mui/icons-material/AutoAwesome " ;
8+ import WorkspacePremiumRoundedIcon from "@mui/icons-material/WorkspacePremiumRounded " ;
99
1010import { useDataStore } from "store" ;
1111
@@ -92,8 +92,7 @@ const FolderActivityFlow = () => {
9292
9393 const firstReleaseLabel = resolvedTags [ 0 ] || "..." ;
9494 const lastReleaseLabel = resolvedTags [ resolvedTags . length - 1 ] || firstReleaseLabel ;
95- const rangeLabel =
96- resolvedTags . length <= 1 ? firstReleaseLabel : `${ firstReleaseLabel } to ${ lastReleaseLabel } ` ;
95+ const rangeLabel = resolvedTags . length <= 1 ? firstReleaseLabel : `${ firstReleaseLabel } to ${ lastReleaseLabel } ` ;
9796
9897 return {
9998 topContributorName : mostActiveContributor || null ,
@@ -183,10 +182,8 @@ const FolderActivityFlow = () => {
183182 </ Breadcrumbs >
184183
185184 < div className = "folder-activity-flow__title" >
186- < AutoAwesomeIcon className = "folder-activity-flow__title-icon" />
187- < span className = "folder-activity-flow__title-text" >
188- Top contributor is { topContributorLabel }
189- </ span >
185+ < WorkspacePremiumRoundedIcon className = "folder-activity-flow__title-icon" />
186+ < span className = "folder-activity-flow__title-text" > Top contributor is { topContributorLabel } </ span >
190187 </ div >
191188
192189 < div className = "folder-activity-flow__subtitle" > { releaseRangeLabel } </ div >
0 commit comments