@@ -92,21 +92,21 @@ def merchants_monero_by_country
9292 base_merchants . monero . group ( :country ) . count . map do |k , v |
9393 next unless v >= 3
9494
95- [ pretty_country_html ( k , show_flag : true ) , v ]
95+ [ pretty_country_html ( k ) , v ]
9696 end . compact_blank
9797 end
9898
9999 def merchants_june_by_country
100100 base_merchants . june . group ( :country ) . count . map do |k , v |
101- [ pretty_country_html ( k , show_flag : true ) , v ]
101+ [ pretty_country_html ( k ) , v ]
102102 end
103103 end
104104
105105 def merchants_by_countries
106106 base_merchants
107107 . where ( country : WEST_EUROPEAN_COUNTRIES )
108108 . group ( :country ) . count . map do |k , v |
109- [ pretty_country_html ( k , show_flag : true ) , v ]
109+ [ pretty_country_html ( k ) , v ]
110110 end
111111 end
112112
@@ -134,7 +134,7 @@ def merchants_by_area_and_days(
134134 range = range_start ..range_end
135135
136136 area . each_with_object ( { } ) do |country , hash |
137- label = pretty_country_html ( country , show_flag : true )
137+ label = pretty_country_html ( country )
138138 base_merchants
139139 . where ( country : country )
140140 . where ( created_at : range )
0 commit comments