Skip to content

Commit dfa4cb3

Browse files
committed
move members h3 back into member-container component
1 parent ca09116 commit dfa4cb3

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/app/organizations/[id]/members/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ export default function MembersPage({
6666

6767
return (
6868
<div className="container mx-auto p-6 space-y-8">
69-
<h3 className="text-3xl font-bold">Members</h3>
7069
<MemberContainer
7170
users={users}
7271
relationships={relationships}

src/components/ui/members/member-container.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ export function MemberContainer({
5252
return (
5353
<div className="space-y-6">
5454
<div className="flex justify-between items-center">
55+
<h3 className="text-2xl font-semibold">Members</h3>
5556
{/* Only show the button if user is a coach to _some_ user within the
5657
scope of the organization. We may come back and add this directly to user
5758
data. */}

0 commit comments

Comments
 (0)