I'm using MUI v6 Time Pickers and I'm trying to use renderDigitalClockTimeView as the viewRenderer for my time picker component.
I set an initial value, and it correctly shows up in the input field. However, when I open the time picker pop-up, the corresponding time is not highlighted/auto-selected.
If I switch to renderMultiSectionDigitalClockTimeView, the same code works correctly and the initial time is auto-selected in the clock.
Here is a minimal example demonstrating the issue: https://codesandbox.io/p/sandbox/silly-night-yw2tsw?file=%2Fsrc%2FMultisectionTimePicker.js%3A7%2C10-7%2C48
Expected behavior: The initial time should be automatically highlighted when using renderDigitalClockTimeView, just like it works when using renderMultiSectionDigitalClockTimeView.
Actual behavior: The initial time is shown only in the input field, but the time picker UI does not show the selected value.
Question: Is this a known behavior difference between renderDigitalClockTimeView and renderMultiSectionDigitalClockTimeView? Is there a way to ensure the initial value is auto-selected/highlighted when using renderDigitalClockTimeView?
Image 1 properly highlighting intial time passed to it. Image 2 is not highlighting initial time passed to it

