moved outside

This commit is contained in:
Kasper Juul Hermansen 2022-08-29 07:17:34 +02:00
parent e671495381
commit dce6f48499
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23

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>
);
};