How to add product descriptions to packing slips?

Is there a way of adding the product description into the packing slip. I keep getting issues with code that was posted on another discussion

In version 1 it only puts the same descirption of the last item in all of the items

Version 1

{% if line_item.variant_title != blank %}

{{ line_item.variant_title }}

{% endif %}
{% if line_item.sku != blank %}

{{ line_item.sku }}

{% endif %}

{% assign product_description = nil %}
{% for item in order.line_items %}
{% if item.sku == line_item.sku %}
{% assign product_description = item.product.description %}
{% endif %}
{% endfor %}
{% if product_description %}
{{ product_description }}
{% endif %}

{{ line_item.shipping_quantity }} of {{ line_item.quantity }}

In version 2 this produces the description for all the items together in one block and repeats it for each item

{% if line_item.variant_title != blank %}

{{ line_item.variant_title }}

{% endif %}
{% if line_item.sku != blank %}

{{ line_item.sku }}

{% endif %}

{% assign product_description = nil %}
{% for item in order.line_items %}
{% if item.sku == line_item.sku %}
{% assign product_description = item.product.description %}
{% endif %}

{% if product_description %}
{{ product_description }}
{% endif %}
{% endfor %}

{{ line_item.shipping_quantity }} of {{ line_item.quantity }}

I’m having the same results with V1 and V2.

Any updates to this?