если ваш сервер точно отправляет ответ точный массив, то вы должны
не забывайте давать аргументы при вызове функции getCategory
, а затем редактировать функцию getCategory
async function getCategory(sampleCategories) {
let arr = []
const res1 = await axios.get('any url you want')
//repeat 6 times
arr = [res1, res2, ...otherElems]
return arr
}
с синтаксисом 'then'
getCategoryIds()
.then(response => getCategory(response))
с асинхронным c ожидание синтаксиса
const firstResponseArr = await getCategoryIds();
const secondResponseArr = await getCategory(firstResponseArr);