Hardik Chaudhari

Results 4 comments of Hardik Chaudhari

I ended up with following solution, ``` ReactDOM.render( ( // Login/SignUp {(props: IAzureADFunctionProps): JSX.Element => { if (props.error && props.error.errorMessage.search("AADB2C90118") !== -1) { // Forgot password return ; } return...

@andremendonca03 See https://github.com/vercel/next.js/discussions/57384#discussioncomment-9545693

@andremendonca03 1. We are getting these issues in server-rendered pages. We are fetching apis and creating pages during build. 2. Same apis are working in browser during runtime. 3. I...