diff --git a/WordPress/src/main/java/org/wordpress/android/ui/stats/refresh/lists/sections/insights/usecases/TotalFollowersUseCase.kt b/WordPress/src/main/java/org/wordpress/android/ui/stats/refresh/lists/sections/insights/usecases/TotalFollowersUseCase.kt index 8933f6f9c895..28deb93cc99c 100644 --- a/WordPress/src/main/java/org/wordpress/android/ui/stats/refresh/lists/sections/insights/usecases/TotalFollowersUseCase.kt +++ b/WordPress/src/main/java/org/wordpress/android/ui/stats/refresh/lists/sections/insights/usecases/TotalFollowersUseCase.kt @@ -63,7 +63,10 @@ class TotalFollowersUseCase @Inject constructor( addActionCard(domainModel) val items = mutableListOf() 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))) }