skip to Main Content

Javascript – Why doesn't this Angular 16 reactive form return any validation errors?

I am working on a reactive registration form in Angular 16. In componentsregistrationregistration.component.ts I have: import { Component, OnInit } from '@angular/core'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; @Component({ selector: 'app-registration', templateUrl: './registration.component.html', styleUrls: ['./registration.component.scss'] }) export class…

VIEW QUESTION

Firebase initialize issue

I am trying to initialize firebase in my project. I need to use the Google Auth feature, which is already enabled on the console of firebase. The method I am calling is the following: import firebase from 'firebase/compat/app'; import {…

VIEW QUESTION
Back To Top
Search