diff --git a/src/app/detail/ui/TaskCardList.tsx b/src/app/detail/ui/TaskCardList.tsx
index b89037623..fc5edab18 100644
--- a/src/app/detail/ui/TaskCardList.tsx
+++ b/src/app/detail/ui/TaskCardList.tsx
@@ -259,11 +259,7 @@ export const TaskCardList = ({
flexShrink: 1,
}}
>
-
+
{(task.subtaskCount > 0 || task.isArchived) && (
@@ -316,7 +312,7 @@ export const TaskCardList = ({
}}
>
{task.dueDate && (
-
+
{
const isoDate = DateStringSchema.parse(formatDate(date))
diff --git a/src/components/atoms/TaskTitle.tsx b/src/components/atoms/TaskTitle.tsx
index 3a6a135ce..3d100ec08 100644
--- a/src/components/atoms/TaskTitle.tsx
+++ b/src/components/atoms/TaskTitle.tsx
@@ -5,10 +5,9 @@ import { CopilotTooltip } from './CopilotTooltip'
interface TaskTitleProps {
title?: string
variant?: 'board' | 'list' | 'subtasks'
- isClient?: boolean
}
-const TaskTitle = ({ title, variant = 'board', isClient = false }: TaskTitleProps) => {
+const TaskTitle = ({ title, variant = 'board' }: TaskTitleProps) => {
const textRef = useRef(null)
const [isOverflowing, setIsOverflowing] = useState(false)
@@ -50,7 +49,6 @@ const TaskTitle = ({ title, variant = 'board', isClient = false }: TaskTitleProp
flexShrink: 1,
flexGrow: 0,
minWidth: 0,
- maxWidth: isClient ? '105px' : 'none',
}}
>
{title}