we are stuck in a problem in angular. if we run the angular 16 project with micro-frontend then we see this error
error NG5002: Parser Error: Unexpected token ===
we are stuck in a problem in angular. if we run the angular 16 project with micro-frontend then we see this error
error NG5002: Parser Error: Unexpected token ===
Copyright Ā© 2021 Jogjafile Inc.

Change the condition
*ngIf="optionalFieldValue==='password'"To*ngIf="optionalFieldValue=='password'"When you try to use the === operator in a template, which is not allowed in Angular templates, comparison operator to use in Angular templates is
==or!=.https://angular.io/guide/template-typecheck