'use client'; import Link from 'next/link'; import { useSession } from 'next-auth/react'; import { formatTemplatesPath } from '@documenso/lib/utils/teams'; import type { Template } from '@documenso/prisma/client'; import { useOptionalCurrentTeam } from '~/providers/team'; export type DataTableTitleProps = { row: Template & { team: { id: number; url: string } | null; }; }; export const DataTableTitle = ({ row }: DataTableTitleProps) => { const { data: session } = useSession(); const team = useOptionalCurrentTeam(); if (!session) { return null; } const isCurrentTeamTemplate = team?.url && row.team?.url === team?.url; const templatesPath = formatTemplatesPath(isCurrentTeamTemplate ? team?.url : undefined); return ( {row.title} ); };