File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ const TopPlayCreators = ({ topPlayCreators }) => {
1414 const secondPlace = topPlayCreators . length > 1 ? topPlayCreators [ 1 ] : null ;
1515 const thirdPlace = topPlayCreators . length > 2 ? topPlayCreators [ 2 ] : null ;
1616
17- const renderRankIcon = ( rank ) => {
17+ const renderRankIcon = ( ) => {
1818 return < TagRoundedIcon className = "rank-icon rank-same" /> ;
1919 } ;
2020
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import userImage from 'images/user.png';
99const formatDate = ( dateString ) => dateString || '' ;
1010
1111function PlayCard ( { play, cover, likeObject } ) {
12- const [ isExpanded , setIsExpanded ] = useState ( false ) ;
12+ const [ isExpanded ] = useState ( false ) ;
1313 if ( ! play || ! play . github || ! play . slug ) return null ;
1414
1515 const avatarSrc =
You can’t perform that action at this time.
0 commit comments