diff --git a/crates/secrets-mcp/src/web.rs b/crates/secrets-mcp/src/web.rs index 2d33fd7..dc1385f 100644 --- a/crates/secrets-mcp/src/web.rs +++ b/crates/secrets-mcp/src/web.rs @@ -410,9 +410,7 @@ async fn audit_page( let entries = rows .into_iter() .map(|row| AuditEntryView { - created_at_iso: row - .created_at - .to_rfc3339_opts(SecondsFormat::Secs, true), + created_at_iso: row.created_at.to_rfc3339_opts(SecondsFormat::Secs, true), action: row.action, target: format_audit_target(&row.namespace, &row.kind, &row.name), detail: serde_json::to_string_pretty(&row.detail).unwrap_or_else(|_| "{}".to_string()),