🐛Changed date format to the EU

This commit is contained in:
Anton SHEPILOV
2024-05-30 14:12:26 +02:00
committed by Anton Shepilov
parent 9026900005
commit e10e0e3504
@@ -137,5 +137,5 @@ export const formatDateShort = (time : number | string) => {
const hours = padZero(date.getHours());
const minutes = padZero(date.getMinutes());
return `${month}.${day}.${year} ${hours}:${minutes}`;
return `${day}.${month}.${year} ${hours}:${minutes}`;
};