diff --git a/src/components/util/date-value.jsx b/src/components/util/date-value.jsx index eff66b735..aed9235f9 100644 --- a/src/components/util/date-value.jsx +++ b/src/components/util/date-value.jsx @@ -8,7 +8,7 @@ import dayjs from "dayjs"; * @returns {object} Formatted date */ function DateValue({ date }) { - return date ? dayjs(date).format("D/M/YYYY hh:mm") : ""; + return date ? dayjs(date).format("D/M/YYYY HH:mm") : ""; } DateValue.propTypes = {