diff --git a/ui/litellm-dashboard/src/components/view_logs/columns.tsx b/ui/litellm-dashboard/src/components/view_logs/columns.tsx index cca45dd805..8acb3070c4 100644 --- a/ui/litellm-dashboard/src/components/view_logs/columns.tsx +++ b/ui/litellm-dashboard/src/components/view_logs/columns.tsx @@ -441,15 +441,7 @@ export const auditLogColumns: ColumnDef[] = [ }, }, { - header: "Created At", - accessorKey: "before_value.created_at", - cell: (info: any) => { - const createdAt = info.row.original.before_value?.created_at; - return createdAt ? : "-"; - }, - }, - { - header: "Updated At", + header: "Timestamp", accessorKey: "updated_at", cell: (info: any) => , },