style(ui/agents): apply prettier to AgentList

This commit is contained in:
Ishaan Jaffer 2026-05-06 15:02:49 -07:00
parent e5f372091a
commit 1414cfdb71
No known key found for this signature in database

View file

@ -41,7 +41,8 @@ export default function AgentList({ agents, loading }: AgentListProps) {
title: "Last activity",
dataIndex: "last_activity_at",
key: "last_activity_at",
render: (value: string | null) => (value ? dayjs(value).fromNow?.() ?? dayjs(value).format("YYYY-MM-DD HH:mm") : "—"),
render: (value: string | null) =>
value ? dayjs(value).fromNow?.() ?? dayjs(value).format("YYYY-MM-DD HH:mm") : "—",
},
];