moved outside

This commit is contained in:
2022-08-29 07:17:34 +02:00
parent e671495381
commit dce6f48499

View File

@@ -89,14 +89,14 @@ const TodoDetails: FC<TodoDetailsProps> = ({ todo }) => {
</h4>
</>
)}
{
todo.description && (
<div>
{todo.description}
</div>
)
}
</div>
{
todo.description && (
<div>
{todo.description}
</div>
)
}
</div>
);
};