diff --git a/src/components/Tasks/TaskListItem.tsx b/src/components/Tasks/TaskListItem.tsx index 4a17a2e..f185b20 100644 --- a/src/components/Tasks/TaskListItem.tsx +++ b/src/components/Tasks/TaskListItem.tsx @@ -14,7 +14,7 @@ interface PropsType { onSave: (item: PimType, journalUid: string, originalItem?: PimType) => Promise; } -const TaskListItem = React.memo((props: PropsType) => { +export default React.memo(function TaskListItem(props: PropsType) { const { entry: task, onClick, @@ -42,5 +42,3 @@ const TaskListItem = React.memo((props: PropsType) => { /> ); }); - -export default TaskListItem; \ No newline at end of file