import { Component, OnInit } from '@angular/core'; import { BaseComponent } from '../example/base-page/base.component'; import { ConfigService } from '../../services/config.service'; @Component({ selector: 'app-create-or-retrieve', templateUrl: './create-or-retrieve.component.html', styleUrls: ['./create-or-retrieve.component.scss'], }) export class CreateOrRetrieveComponent extends BaseComponent implements OnInit { loadedMyPolls = false; constructor(public config: ConfigService) { super(config); } ngOnInit() { // if (!environment.production) { // this.findMyPollsByEmail('tktest@tktest.com') // } } findMyPollsByEmail(email: string) { if (!email) { return; } this.config.findPollsByEmail(email); this.loadedMyPolls = true; } trackFunction(index: number, item: any): number { return item.id; } }