| Do | Use the auto format in feeds and lists so recent items show “2 hours ago” and older items show the full date automatically. |
| Do | Keep formatting consistent within the same list or table — mixing relative and absolute timestamps in the same column confuses scanning. |
| Do | Enable isTimezoneShown when the audience spans multiple time zones, like a global team calendar or audit log. |
| Do | Use isLive for active dashboards or real-time feeds so the relative time stays accurate without a page refresh. |
| Don't | Don’t display raw Unix timestamps or ISO strings to users — always pass them through Timestamp to get a human-readable format. |
| Don't | Avoid system_date or system_time formats in user-facing UI — they are meant for developer tools, logs, and machine-readable contexts. |
| Don't | Don’t disable the tooltip on relative timestamps — users expect to hover for the full date when they see “3 hours ago”. |