starting more for flow state quote

This commit is contained in:
talksik
2022-05-09 06:48:31 -05:00
parent 82a11d1833
commit 113e5b514f
4 changed files with 28 additions and 8 deletions
@@ -103,13 +103,13 @@ export default function LineRow({
if (masterLineData.currentUserMember.lastVisitDate)
return (
<span className={`text-gray-400 ml-auto text-xs font-semibold`}>
{moment(masterLineData.currentUserMember.lastVisitDate).fromNow()}
{moment(masterLineData.currentUserMember.lastVisitDate).fromNow(true)}
</span>
);
return (
<span className={`text-gray-300 ml-auto text-xs `}>
{moment(masterLineData.currentUserMember.lastVisitDate).fromNow()}
{moment(masterLineData.currentUserMember.lastVisitDate).fromNow(true)}
</span>
);
}, [masterLineData]);