Skip to content

Commit

Permalink
Update TotalFollowersUseCase.kt
Browse files Browse the repository at this point in the history
Fix detekt line length issue
  • Loading branch information
ravishanker committed Jan 14, 2024
1 parent cfc97a5 commit 8b49370
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ class TotalFollowersUseCase @Inject constructor(
addActionCard(domainModel)
val items = mutableListOf<BlockListItem>()
items.add(buildTitle())
items.add(ValueWithChartItem(value = statsUtils.toFormattedString(domainModel, MILLION), extraBottomMargin = true))
items.add(ValueWithChartItem(
value = statsUtils.toFormattedString(domainModel, MILLION),
extraBottomMargin = true
))
if (totalStatsMapper.shouldShowFollowersGuideCard(domainModel)) {
items.add(ListItemGuideCard(resourceProvider.getString(R.string.stats_insights_followers_guide_card)))
}
Expand Down

0 comments on commit 8b49370

Please sign in to comment.