Beroepkosten - delete table

I’m trying to delete the ‘fiscale beperking’ and already managed to chance the table header.
The header is correct but the row below still consists of 5 tables

{% capture header %}|-----------40%---------------|---------------15%-----------:|---------------15%-----------:|---------------15%-----------:+{% endcapture %}

{% capture table %}


{% stripnewlines %}
{{ header }}
{% newline %}
| {% t “Detail van de kosten” %}
| {{ period.year_end_date | date:’%Y’ }}
| {% t “Beroeps-
beperking” %}

({% t “aftrekbaar” %})
| {% t “Aftrekbaar” %}
{% newline %}
{% newline %}

{% newline %}
{% newline %}
{% for cost_category in cost_categories %}
{% assign $11 = 0 %}
{% assign $12 = 0 %}
{% assign $13 = 0 %}
{% if cost_keys_string != blank %}
{% assign category_key = cost_keys[forloop.index0] %}
{% else %}
{% assign category_key = cost_category | replace:" “,”_" | downcase %}
{% endif %}

{% assign costs_range = custom[category_key].selected | default:custom[category_key].accounts %}

{% ifi costs_range != blank %}

{% newline %}
| {% t cost_category %} {% input custom[category_key].accounts as:account_collection range:global_range %} |

What section do I have to delete so that there are 4 table contents?

Hi Niels,

Welcome to Silverfin Community!

I think the problem in your table is that you have added several {% newline %} tags next to each other. When you do this, the table structure breaks as liquid expects only one separation between each row. If you want to create some space between your header and the rest of the table you can do the following:

{% newline %}
|
{% newline %}
|
{% newline %}
|
{% newline %}

Let me know if that works.

Best,
Borja