refactor(priority-section): remove task name display from PrioritySection

- Eliminated the task name display from the PrioritySection component for a cleaner layout.
- Updated BoardViewTaskCard to include task name alongside the PrioritySection for improved organization.
This commit is contained in:
shancds
2025-06-18 15:31:00 +05:30
parent 39e8add103
commit 193288013e
2 changed files with 10 additions and 8 deletions

View File

@@ -53,12 +53,6 @@ const PrioritySection = ({ task }: PrioritySectionProps) => {
return (
<Flex gap={4}>
{priorityIcon}
<Typography.Text
style={{ fontWeight: 500 }}
ellipsis={{ tooltip: task.name }}
>
{task.name}
</Typography.Text>
</Flex>
);
};