Skip to content

Commit

Permalink
ActivityInfo: fix date formatting (#1790)
Browse files Browse the repository at this point in the history
* ActivityInfo: fix date formatting

* clean up
  • Loading branch information
juliangruber authored Aug 27, 2024
1 parent 28a8c35 commit 1f226f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/src/pages/dashboard/ActivityInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const ActivityItem = ({ activity }: {activity: Activity}) => {

<div className='flex-1 relative top-[1px] flex flex-col gap-1'>
<Text size='2xs' >{activity.message}</Text>
<Text size='2xs' color='secondary'>{dayjs(activity.timestamp).format('HH:MM')}</Text>
<Text size='2xs' color='secondary'>{dayjs(activity.timestamp).format('HH:mm')}</Text>
</div>

</div>
Expand Down

0 comments on commit 1f226f9

Please sign in to comment.