Skip to content

Commit

Permalink
remove hardcoded test value 🤦
Browse files Browse the repository at this point in the history
  • Loading branch information
physphil committed Apr 11, 2020
1 parent 22fdf84 commit 3d59c08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class StatsViewModel(private val repo: ReminderRepo) : ViewModel() {

val reminderCountLiveData: LiveData<String> =
Transformations.map(repo.getOldReminderCount()) {
DecimalFormat.getIntegerInstance().format(68948)
DecimalFormat.getIntegerInstance().format(it)
}

val oldestReminderDateLiveData: LiveData<String> =
Expand Down

0 comments on commit 3d59c08

Please sign in to comment.