Pendem Shiva Shankar
1 min readFeb 4, 2020

--

Add injectable to service class as

@Injectable({

providedIn: ’root’

})

export class AuthService{

}

And while using add a complulsory inject as

constructor(@Inject(Router) private router: Router)

{

}

This solved my issue

--

--

No responses yet