my aggrid is getting its data from a pinia store, bras is an array of the customer’s branches
const { selectedCustomer } = storeToRefs(customerStore)
const rowData =selectedCustomer.value.bras
when i modify the data of a branch in another component that also draws from this store, the grid is not being updated and the whole thing kind of glitches. Has anyone encountered this before?