epic-ux-design #1

Open
sepehr wants to merge 31 commits from epic-ux-design into main
Showing only changes of commit 5296c4da2c - Show all commits

View File

@@ -89,7 +89,7 @@ export function AgentCard({ agent, onEdit, onRefresh, onToggle }: AgentCardProps
const Icon = config.icon
const lastAction = agent.actions[0]
const dateLocale = language === 'fr' ? fr : enUS
const isNew = Date.now() - new Date(agent.createdAt).getTime() < 24 * 60 * 60 * 1000
const isNew = new Date(agent.createdAt).getTime() === new Date(agent.updatedAt).getTime()
const handleRun = async () => {
setIsRunning(true)