moved outside

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

View File

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