Blazorade / Blazorade-MSAL

A Blazor component library that makes it easy to use authentication in your application through MSAL, both in Blazor Server and Blazor WebAssembly applications.
MIT License
17 stars 5 forks source link

Fixed problem in Edge on Android #8

Closed MikaBerglund closed 3 years ago

MikaBerglund commented 3 years ago

Seems that Edge on Android does not support null-coalescing operators (??), which is supported on the desktop, and Chrome on both desktop and mobile.

Changing ?? to IIFs fixed the problem.