Hi
I also had this problem. The problem is that the time format string in modules/default/calendar/calendar.js is wrong for 24h setup.
Find these lines and change lower case hh
into H
in time format string.
case 24: {
moment.updateLocale(config.language, {
longDateFormat: {
LT: "H:mm" // FIX here: was "hh:mm"
}
});
break;
}
This was already fixed in development branch: https://github.com/MichMich/MagicMirror/pull/943/files