For me setting the background as a clear colour with id solved the issue:
ScrollViewReader { scrollViewProxy in
ScrollView {
LazyVStack {
ForEach(viewModel.items) { item in
ItemView(item)
.background(Color.clear.id(item.id))
}
}
}
}