I'm working with the DialogService.Confirm call and it appears that the resulting dialog does not really have any way to select the options with the keyboard. This creates an accessibility issue. I see the confirm options has an AutoFocusFirstElement property which defaults to true but none of the buttons on the dialog seem to get focus when it is displayed. Is this the intended behavior or something I should file as a bug in the github repo? Thanks.
Below is the call I am making
await DialogService.Confirm(message, title, new ConfirmOptions
{
OkButtonText = "Ok",
CancelButtonText = "Cancel",
ShowClose = false,
});