This commit is contained in:
sdarbinyan
2026-05-07 00:31:14 +04:00
parent 742b2665e9
commit cdb9760033
7 changed files with 3 additions and 716 deletions

View File

@@ -1,6 +1,6 @@
import { Component, computed, inject, signal } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { Router, RouterLink } from '@angular/router';
import { Router } from '@angular/router';
import { HttpClient } from '@angular/common/http';
import { FastcheckService } from '../../fastcheck.service';
import { FASTCHECK_API } from '../../api';
@@ -29,7 +29,7 @@ interface CheckFastcheckResponse {
@Component({
selector: 'app-fastcheck-page',
imports: [FormsModule, RouterLink, TranslatePipe],
imports: [FormsModule, TranslatePipe],
templateUrl: './fastcheck-page.html',
styleUrl: './fastcheck-page.scss'
})