diff --git a/apps/dashboard/app/(app)/audit/[bucket]/row.tsx b/apps/dashboard/app/(app)/audit/[bucket]/row.tsx index cdf0708456..04a53de0d2 100644 --- a/apps/dashboard/app/(app)/audit/[bucket]/row.tsx +++ b/apps/dashboard/app/(app)/audit/[bucket]/row.tsx @@ -45,8 +45,9 @@ export const Row: React.FC = ({ auditLog, user }) => { {user.username?.slice(0, 2)} - {`${user.firstName ?? "" - } ${user.lastName ?? ""}`} + {`${ + user.firstName ?? "" + } ${user.lastName ?? ""}`} ) : (
diff --git a/apps/dashboard/lib/tinybird.ts b/apps/dashboard/lib/tinybird.ts index a2cc9ac0a1..9240e23020 100644 --- a/apps/dashboard/lib/tinybird.ts +++ b/apps/dashboard/lib/tinybird.ts @@ -477,23 +477,23 @@ export type UnkeyAuditLog = { }; resources: Array<{ type: - | "key" - | "api" - | "workspace" - | "role" - | "permission" - | "keyAuth" - | "vercelBinding" - | "vercelIntegration" - | "ratelimitNamespace" - | "ratelimitOverride" - | "gateway" - | "llmGateway" - | "webhook" - | "reporter" - | "secret" - | "identity" - | "auditLogBucket"; + | "key" + | "api" + | "workspace" + | "role" + | "permission" + | "keyAuth" + | "vercelBinding" + | "vercelIntegration" + | "ratelimitNamespace" + | "ratelimitOverride" + | "gateway" + | "llmGateway" + | "webhook" + | "reporter" + | "secret" + | "identity" + | "auditLogBucket"; id: string; meta?: Record;