Skip to content

Commit

Permalink
refactor(audit/page.tsx): update filter parameter names from "user" t…
Browse files Browse the repository at this point in the history
…o "users" and "rootKey" to "rootKeys"
  • Loading branch information
chronark committed Feb 27, 2024
1 parent 75cb8c1 commit 4df4f62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/app/(authenticated)/(app)/app/audit/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ const UserFilter: React.FC<{ tenantId: string }> = async ({ tenantId }) => {

return (
<Filter
param="user"
param="users"
title="Users"
options={members
.filter((m) => Boolean(m.publicUserData))
Expand All @@ -289,7 +289,7 @@ const RootKeyFilter: React.FC<{ workspaceId: string }> = async ({ workspaceId })

return (
<Filter
param="rootKey"
param="rootKeys"
title="Root Keys"
options={rootKeys.map((k) => ({
label: k.id ?? k.id,
Expand Down

0 comments on commit 4df4f62

Please sign in to comment.