Azure B2C pages throw Content Security Policy error on click Next/Continue buttons on different steps in login/reset-password flows. If I type email (or without email) and click Next button on the first step of login then error is thrown, but if press Enter - no errors.
Image 1:
The reason of it is that, on the one hand, CSP on those pages doesn't allow using inline code but on the other hand there are some pieces of inline code inserted by Azure B2C. F.e. action="javascript:void(0)" in forms.
Image 2:
Debugging js code shows that there is a line of code that prevents calling this inline action ( action="javascript:void(0)") on pressing Enter and there is no such prevention on click Next button. There are several such places in forms on different steps.
This part of code is generated by Azure B2C. Changing CSP is not possible because it's set on Azure side also. In fact, this error doesn't block login flow but throws a lot of errors on each step
Does anybody have the same issue and suggestions how to avoid it?

