diff --git a/src/stores/mixin.ts b/src/stores/mixin.ts index 12864d305..48ca0e791 100644 --- a/src/stores/mixin.ts +++ b/src/stores/mixin.ts @@ -84,7 +84,7 @@ export const useCounterMixin = defineStore("mixin", () => { const month = dateMoment.format(isFullMonth ? "MMMM" : "MMM"); const year = +dateMoment.format("YYYY") + 543; return `${day} ${month} ${year}${ - isTime ? dateMoment.format(" hh:mm น.") : "" + isTime ? dateMoment.format(" HH:mm น.") : "" }`; }