fix(sms): prefix course time with ساعت

SMS courseTime now reads «از ساعت 19 تا 21» instead of «از 19 تا 21».
This commit is contained in:
2026-08-16 00:16:40 +03:30
parent 4d60755a95
commit a6c760c3b7
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ const formatCourseTime = (startTime, endTime) => {
const end = formatClockPart(endTime);
if (!start) return '';
if (!end) return start;
return `از ${start} تا ${end}`;
return `از ساعت ${start} تا ${end}`;
};
const weekdayIndex = (value) => {