Incorrect or false warnings by Table and its Header Row

I am using table as per doc

 <s-table>
            <s-table-header-row >
                <s-table-header listSlot="primary">Location</s-table-header>
                <s-table-header listSlot="labeled" format="numeric">Completed</s-table-header>
            </s-table-header-row>
            <s-table-body>
                {formattedData.map((dataPoint) => (
                    <s-table-row key={dataPoint.location}>
                        <s-table-cell>{dataPoint.location}</s-table-cell>
                        <s-table-cell>{dataPoint.completedOrders}</s-table-cell>
                    </s-table-row>
                ))}
            </s-table-body>
        </s-table>

Getting following warnings:

  • header row missing [FALSE]
  • ‘primary’ list slot missing [FALSE]

Screenshot 2025-11-21 at 17.57.17

Thanks

This was raised here:

1 Like

Yes I see. I searched for it before posting, but still missed it.

Thanks @bkspace

I am new here. what should I do? Do I need to close this or something? I don’t see any such option though.