-
Notifications
You must be signed in to change notification settings - Fork 212
Open
Labels
Milestone
Description
@code{
private HubConnection hubConnection;
protected override async Task OnInitializedAsync()
{
hubConnection = new HubConnectionBuilder()$$
}
}
- From "$$" hit "enter".
Expected:
@code{
private HubConnection hubConnection;
protected override async Task OnInitializedAsync()
{
hubConnection = new HubConnectionBuilder()
$$
}
}
Actual:
@code{
private HubConnection hubConnection;
protected override async Task OnInitializedAsync()
{
hubConnection = new HubConnectionBuilder()
$$
}
}