moment.locale("en")
moment().format("LT") -> 1:21 PM
but
moment.locale("en-gb")
moment().format("LT") -> 13:21
which is incorrect.
Here's the reproduction sandbox: https://codesandbox.io/s/moment-js-time-format-issue-rnr9vc
Looks like a bug. How do I fix this?