Skip to content

Commit 3edcb8b

Browse files
committed
linting
1 parent 1e42048 commit 3edcb8b

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

apps/website/app/(home)/auth/group/[id]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ const Page = async ({ params }: { params: Promise<{ id: string }> }) => {
77
<main>
88
<div className="mx-auto max-w-6xl space-y-8 px-6 py-12">
99
<div>
10-
<a
10+
<link
1111
href="/auth/group"
1212
className="text-muted-foreground text-sm hover:underline"
1313
>
1414
← Back to groups
15-
</a>
15+
</link>
1616
</div>
1717
<h1 className="text-2xl font-semibold">Group Members</h1>
1818
<Suspense fallback={<p>Loading...</p>}>

apps/website/app/components/auth/ListGroupMembers.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ type Member = Awaited<ReturnType<typeof getGroupMemberList>>[number];
1010
const AGENT_TYPE_LABEL: Record<string, string> = {
1111
person: "Person",
1212
organization: "Organization",
13+
// eslint-disable-next-line @typescript-eslint/naming-convention
1314
automated_agent: "Automated Agent",
1415
anonymous: "Anonymous",
1516
group: "Group",

0 commit comments

Comments
 (0)