diff --git a/apps/web/components/team/screens/Team.tsx b/apps/web/components/team/screens/Team.tsx index d59a75b1d1..f73905609a 100644 --- a/apps/web/components/team/screens/Team.tsx +++ b/apps/web/components/team/screens/Team.tsx @@ -1,10 +1,7 @@ import Link from "next/link"; import { TeamPageProps } from "pages/team/[slug]"; -import React from "react"; import { WEBAPP_URL } from "@calcom/lib/constants"; -import Button from "@calcom/ui/Button"; -import { Icon } from "@calcom/ui/Icon"; import { Avatar } from "@calcom/ui/v2"; import { useLocale } from "@lib/hooks/useLocale"; @@ -13,46 +10,46 @@ type TeamType = TeamPageProps["team"]; type MembersType = TeamType["members"]; type MemberType = MembersType[number]; -const Team = ({ team }: TeamPageProps) => { +const Member = ({ member, teamName }: { member: MemberType; teamName: string | null }) => { const { t } = useLocale(); - const Member = ({ member }: { member: MemberType }) => { - return ( - -
{member.name}
-- {member.bio || t("user_from_team", { user: member.name, team: team.name })} -
-{member.name}
++ {member.bio || t("user_from_team", { user: member.name, team: teamName })} +
+