Array of queries in a table

Hi,
i have 2 queries loading data from openstreetmap, 1 is loading bakeries and 1 is loading restaurants. The data are loaded in a table.
If i select only 1 of them the table is correctly populated, but if i add them into an array, as you can see in the screenshot, the table is empty, even if the preview they are all loaded correctly.
How can i fix this?
thanks!

i added a js query with this code
const restaurantData = queryrestaurant.data.features;
const bakeryData = querybakery.data.features;

const combinedData = [...restaurantData, ...bakeryData];

return combinedData;
then i selected combinedData as data source for the table and it works fine

1 Like