I have this format of date 2022-12-03T22:25:00.000+13
I use moment to convert this date in this format moment(value).format('HH:mm')
The problem is that when I convert it, the result is 10:25
not 22:25
. I want the result to be 22:25. How can I achieve this?