export const updateLabelsById = (data_array, updates) => { return data_array.map(item => { const update = updates.find(update_item => update_item.id === item.id); return update ? { ...item, label: update.label } : item; }); };