Skip to content

Commit cc85e5e

Browse files
committed
fix: use gregorian copyright year
1 parent 6c4de88 commit cc85e5e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Bitkit/Views/Settings/SupportScreen.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ struct SupportScreen: View {
6161
}
6262

6363
private var copyrightText: String {
64-
let year = Calendar.current.component(.year, from: Date())
64+
let year = Calendar(identifier: .gregorian).component(.year, from: Date())
6565
return t("settings__support__copyright", variables: ["year": "\(year)"])
6666
}
6767

0 commit comments

Comments
 (0)