Remove ConfigAwait

This commit is contained in:
Daniel Clark
2022-12-21 10:16:23 +00:00
parent b8e50e4dc0
commit 757349285a
@@ -463,12 +463,12 @@ public class NavigateExtension : TriggerExtension
name = string.Format(format, name); name = string.Format(format, name);
} }
mediator.Send(new Navigate(name, parameters.ToArray()) { Route = route }).ConfigureAwait(false); mediator.Send(new Navigate(name, parameters.ToArray()) { Route = route });
} }
if (to is Type type) if (to is Type type)
{ {
mediator.Send(new Navigate(type, parameters.ToArray()) { Route = route }).ConfigureAwait(false); mediator.Send(new Navigate(type, parameters.ToArray()) { Route = route });
} }
} }
} }