@@ -286,8 +286,7 @@ export const PositionDetailLight = ({ darkMode = true }) => {
286286 meta : {
287287 trend_factors : {
288288 average_growth_rate : averageGrowthRate ,
289- year_over_year_growth : yearOverYearGrowth ,
290- relative_popularity : Math . round ( ( totalPublications / 1000 ) * 100 ) / 100
289+ year_over_year_growth : yearOverYearGrowth
291290 }
292291 }
293292 } ;
@@ -361,8 +360,7 @@ export const PositionDetailLight = ({ darkMode = true }) => {
361360 meta : {
362361 trend_factors : {
363362 average_growth_rate : averageGrowthRate ,
364- year_over_year_growth : yearOverYearGrowth ,
365- relative_popularity : Math . round ( ( totalPublications / 1000 ) * 100 ) / 100
363+ year_over_year_growth : yearOverYearGrowth
366364 }
367365 }
368366 } ;
@@ -477,7 +475,7 @@ export const PositionDetailLight = ({ darkMode = true }) => {
477475 const renderTrendIndicators = ( ) => {
478476 if ( ! trendData ?. meta ?. trend_factors ) return null ;
479477
480- const { average_growth_rate, relative_popularity } = trendData . meta . trend_factors ;
478+ const { average_growth_rate } = trendData . meta . trend_factors ;
481479
482480 return (
483481 < div className = { styles . trendIndicators } >
@@ -489,10 +487,6 @@ export const PositionDetailLight = ({ darkMode = true }) => {
489487 { average_growth_rate > 0 ? '+' : '' } { average_growth_rate } %
490488 </ span >
491489 </ div >
492- < div className = { styles . indicator } >
493- < span className = { styles . indicatorLabel } > Popularity Score:</ span >
494- < span className = { styles . indicatorValue } > { relative_popularity } </ span >
495- </ div >
496490 < div className = { styles . indicator } >
497491 < span className = { styles . indicatorLabel } > Total Publications:</ span >
498492 < span className = { styles . indicatorValue } > { trendData . publication_count } </ span >
0 commit comments