Angular 8 /Firebase: how do I set the displayName when creating user with email and password?
问题 After reading so many posts and empty(or not?) solutions, I figured that the best thing was to post of my own. So my goal is just to get the displayName of the user so in a list of posts or whatever, the authorship doesnt look ugly with a uid... Here's what I find relevant for the problem: Signup reactive form, later called on onInit: createForm() { this.registerForm = this.fb.group( { name: ['', Validators.required], email: ["", [Validators.required]], password: [null, [Validators.required,