fixed temporary time solution

This commit is contained in:
u-e 2019-01-11 13:59:52 +03:00
parent f4e57281ec
commit 68ad2d660a

View File

@ -14,10 +14,7 @@ const THIS_MONTH = moment()
export const getTimeFromNow = (value) => {
if (!value) return null;
return moment
.utc(value)
.local()
.fromNow();
return moment(value).fromNow();
};
export const getFormatedCreatedDate = (value) => {