Child component not updating data

I have a child component Table.

Table.php

<?php

namespace AppUIHttpTwigComponentsMolecules;

use SymfonyUXLiveComponentAttributeAsLiveComponent;
use SymfonyUXLiveComponentAttributeLiveProp;
use SymfonyUXLiveComponentDefaultActionTrait;

#[AsLiveComponent]
final class Table
{
    use DefaultActionTrait;

    #[LiveProp] public array $headers = [];
    #[LiveProp(updateFromParent: true, onUpdated: 'onDataUpdate')] public array $data = [];

    public function onDataUpdate(): void
    {
        $this->data;
    }
}
<div {{ attributes }}>

    {% if data|length > 0 %}
        <div class="table">
            <div class="row header">
                {% for header in headers %}
                    <div class="cell">{{ header }}</div>
                {% endfor %}
            </div>

            {% for row in data %}
                <div class="row">
                    {% for cell in row %}
                        <div class="cell">{{ cell }}</div>
                    {% endfor %}
                </div>
            {% endfor %}
        </div>
    {% else %}
        <span class="no-data">Er is momenteel nog geen data beschikbaar.</span>
    {% endif %}

</div>

This component is loaded from my parent component like this:

<twig:Molecules:Table :headers="childrenTableHeaders" :data="data" data-live-id="{{ 'childrentable' ~ childrenTableData|length }}" />

This is my parent component:

<?php

namespace AppUIHttpTwigComponentsPagesAdmin;

use AppDomainServiceUserChildServiceInterface;
use PsrLogLoggerInterface;
use SymfonyComponentEventDispatcherAttributeAsEventListener;
use SymfonyComponentHttpFoundationRequestStack;
use SymfonyUXLiveComponentAttributeAsLiveComponent;
use SymfonyUXLiveComponentAttributeLiveAction;
use SymfonyUXLiveComponentAttributeLiveListener;
use SymfonyUXLiveComponentAttributeLiveProp;
use SymfonyUXLiveComponentComponentToolsTrait;
use SymfonyUXLiveComponentDefaultActionTrait;

#[AsLiveComponent]
final class AdminImportChildren
{
    use DefaultActionTrait;
    use ComponentToolsTrait;

    public function __construct(
        private RequestStack $requestStack,
        private readonly ChildServiceInterface $childService,
        private LoggerInterface $logger,
    )
    {
    
    }
    
    #[LiveProp] public bool $showAdminImportChildrenForm = false;
    #[LiveProp] public array $childrenTableHeaders = ['Voornaam', 'Achternaam', 'Geboortedatum', 'BSN'];
    #[LiveProp] public array $childrenTableData = [];

    public function mount(): void
    {
        $this->refreshChildrenTableData();
    }

    #[AsEventListener('import.children')]
    public function refreshChildrenTableData(): void
    {
        $this->logger->info('Refreshing children table data');
        $allChildren = $this->childService->getAllChildren();
        $this->childrenTableData = array_map(function($child) {
            return [
                'voornaam' => $child->getFirstName(),
                'achternaam' => $child->getLastName(),
                'geboortedatum' => $child->getBirthDate()->format('d-m-Y'),
                'bsn' => $child->getSsn(),
            ];
        }, $allChildren);
    }

    #[LiveAction]
    public function toggleAdminImportChildrenForm(): void
    {
        $this->showAdminImportChildrenForm = !$this->showAdminImportChildrenForm;
    }
    
    #[LiveListener('closeAdminImportChildrenFormEvent')]
    public function closeAdminImportChildrenForm(): void
    {
        $this->showAdminImportChildrenForm = false;
    }
}

When data is loaded in, I want to rerender the Table component with the new data. I am sure #[AsEventListener('import.children')] is triggered because I get the log-message.

But for some reason Table is not showing the new data?

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật