No Start/End Haptics when scrolling through List on watchOS

I have a basic List made in SwiftUI. When I scroll with the Digital Crown I get the "light haptics" however when I get to the top or bottom of the list I don't get the more pronounced dent.

Update - If I use a plain list style then I get the haptics as expected. However it should work with the elliptical style as this is used in the system.

The console outputs the following

2022-05-19 23:32:53.782614+0200 WatchApp WatchKit Extension[326:41020] [default] Error: Error Domain=NSOSStatusErrorDomain Code=-536870187 "(null)"

2022-05-19 23:32:53.783181+0200 WatchApp WatchKit Extension[326:41020] [detents] could not play detent NO, 2, Error Domain=NSOSStatusErrorDomain Code=-536870187 "(null)", (

        {

        Gain = "0.01799999922513962";

        OutputType = 0;

        SlotIndex = 4;

    },

        {

        Gain = "0.4900000095367432";

        OutputType = 1;

        SlotIndex = 5;

    }

)

Here is my code

struct ContentView: View {

    var body: some View {



            List {

                

                ForEach(0..<100) { i in

                    

                   NavigationLink(destination: FeedView()) {

                        Text("Hello")

                    }

                }

                

            }.navigationTitle("Title")

   

    }

}

No Start/End Haptics when scrolling through List on watchOS
 
 
Q