mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-01 20:43:20 +08:00
Reduce the number of monthly prices visible
Going up to 50$/month is just way too much, since then the slider looks quite ugly as it is barely ever gets full.
This commit is contained in:
@ -101,7 +101,7 @@ class MonthlyRentalWidget extends StatelessWidget {
|
||||
|
||||
Set<String> _generateSkus() {
|
||||
var list = <String>{};
|
||||
for (var i = 0; i <= 50; i++) {
|
||||
for (var i = 0; i <= 25; i++) {
|
||||
list.add("sku_monthly_min$i");
|
||||
}
|
||||
return list;
|
||||
|
Reference in New Issue
Block a user