//=========================================== // THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY UNLESS YOU ALSO EDIT THE CORRESPONDING FILE IN packages/template //=========================================== import { Team } from "../../.."; import { useUser } from "../../../lib/hooks"; import { useTranslation } from "../../../lib/translations"; import { EditableText } from "../editable-text"; import { Section } from "../section"; export function TeamUserProfileSection(props: { team: Team }) { const { t } = useTranslation(); const user = useUser({ or: 'redirect' }); const profile = user.useTeamProfile(props.team); return (
{ await profile.update({ displayName: newDisplayName }); }} />
); }