Using Locale.ROOT for date parsing but Locale.getDefault() for display formatting creates inconsistency. Consider using a consistent locale approach throughout the date handling.
val formatter = SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault())
Originally posted by @Copilot in #46 (comment)