File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 > } >
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ type Member = Awaited<ReturnType<typeof getGroupMemberList>>[number];
1010const 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" ,
You can’t perform that action at this time.
0 commit comments