[SOLVED]Create a table wit web3uikit

Hi guys, Iā€™m trying to create a table with web3uikit but Iā€™ve got some difficulties.

This is my code :

<Table
                columnsConfig="80px 3fr 2fr 2fr 80px"
                data={[
                        arrayAddress.map((value) => (
                           [
                               value
                           ]
                        ))

                ]}
                header={['Adresse EnregistrƩe']}
                isColumnSortable={[
                    false,
                ]}
                noPagination
                pageSize={30}
            />

And this is what I get :

As you can see both address are together instead being on different line

What I did wrong ?

If you remove the outer square brackets from the data prop and you have an array of ["address1", "address2"] it will work.

data={arrayAddress.map((value) => [value])}

Exactly, thx a lot Glad