Argument of type 'string | number | boolean' is not assignable to parameter of type 'string | number'. Type 'false' is not assignable to type 'string | number'. code example
Example: Argument of type 'string | null' is not assignable to parameter of type 'string'. Type 'null' is not assignable to type 'string'
this.currentUser = JSON.parse(localStorage.getItem('currentUser') || '{}');