From 39d4f49e994fba3a05d976708910acddce715002 Mon Sep 17 00:00:00 2001 From: checkedear <271323618+checkedear@users.noreply.github.com> Date: Sat, 25 Apr 2026 16:57:34 +0200 Subject: [PATCH] fix: date format in test bottom sheet --- firka/lib/ui/components/common_bottom_sheets.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firka/lib/ui/components/common_bottom_sheets.dart b/firka/lib/ui/components/common_bottom_sheets.dart index e86ecba..7cc748e 100644 --- a/firka/lib/ui/components/common_bottom_sheets.dart +++ b/firka/lib/ui/components/common_bottom_sheets.dart @@ -242,7 +242,7 @@ Future showTestBottomSheet( ) async { final date = lesson.start; final formattedDate = - "${date.format(data.l10n, FormatMode.grades)}, ${DateFormat.EEEE(data.l10n.localeName).format(date).firstUpper()}"; + "${date.format(data.l10n, FormatMode.yearly).firstUpper()}, ${DateFormat.EEEE(data.l10n.localeName).format(date).firstUpper()}"; final statsForNerdsEnabled = data.settings .group("settings")