Discovered just now that having the view nested in a NavigationStack can cause the issue.
In my case, commenting out the NavStack lets me inspect individual views. Hope this helps someone.
var body: some View {
// NavigationStack { <-- Here
VStack {
Text("Hello")
Text("World")
}
// } <-- Here
}