diff --git a/mobile/lib/ui/viewer/gallery/component/group/type.dart b/mobile/lib/ui/viewer/gallery/component/group/type.dart index b101fda92..755124143 100644 --- a/mobile/lib/ui/viewer/gallery/component/group/type.dart +++ b/mobile/lib/ui/viewer/gallery/component/group/type.dart @@ -37,7 +37,7 @@ extension GroupTypeExtension on GroupType { .format(date); } else if (this == GroupType.month) { final date = DateTime.fromMicrosecondsSinceEpoch(file.creationTime!); - return DateFormat.MMMd(Localizations.localeOf(context).languageCode) + return DateFormat.yMMM(Localizations.localeOf(context).languageCode) .format(date); } else { throw UnimplementedError("not implemented for $this");