From ada804cde0b5939a4b24f74e1ba8d7faece52f05 Mon Sep 17 00:00:00 2001 From: Austin Wright Date: Wed, 8 Oct 2025 16:08:52 -0700 Subject: [PATCH] Show date in current locale --- Source/SimpleContentView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/SimpleContentView.swift b/Source/SimpleContentView.swift index d394411..19cf194 100644 --- a/Source/SimpleContentView.swift +++ b/Source/SimpleContentView.swift @@ -33,7 +33,7 @@ struct SimpleContentView: View { private let dateFormatter: DateFormatter = { let dateFormatter = DateFormatter() - dateFormatter.dateFormat = "dd-MM-yyyy" + dateFormatter.dateStyle = .medium return dateFormatter }()