{ "version": 3, "sources": ["apps/login/src/app/shared/card/card.component.ts", "apps/login/src/app/shared/card/card.component.html", "apps/login/src/app/shared/error/error.component.ts", "apps/login/src/app/shared/error/error.component.html", "apps/login/src/app/shared/loading/loading.component.ts", "apps/login/src/app/shared/loading/loading.component.html", "apps/login/src/app/shared/shared.module.ts", "apps/login/src/app/shared/const.ts"], "sourcesContent": ["import { Component } from '@angular/core';\n\n@Component({\n selector: 'login-card',\n templateUrl: './card.component.html',\n styleUrls: ['./card.component.scss'],\n})\nexport class CardComponent {}\n", "
\n", "import { Component, Input, OnInit } from '@angular/core';\nimport { EnvironmentEnum } from '@sites/util-environment';\nimport { ErrorService, getTransactionId } from '@sites/util-errors';\nimport { environment } from '../../../environments/environment';\n\n@Component({\n selector: 'login-error',\n templateUrl: './error.component.html',\n styleUrls: ['./error.component.scss'],\n})\nexport class ErrorComponent implements OnInit {\n @Input() error?: string;\n\n transactionId = getTransactionId();\n isTokenError = false;\n\n constructor(private errorService: ErrorService) {}\n\n ngOnInit() {\n this.errorService.captureError(this.error);\n if (environment.name !== EnvironmentEnum.Production) {\n console.error('handleError', this.error);\n }\n if (this.error?.includes('Token')) {\n this.isTokenError = true;\n }\n }\n}\n", "\n The link you've used is no longer valid. Please request a new link by\n trying to login again.\n
\n }\n @if (!isTokenError) {\n \n\n If you're having problems signing in please contact\n support\n and reference {{ transactionId }}
\n