{"version":3,"file":"src_app_views_loan_skipped-confirmation_skipped-confirmation_module_ts.js","mappings":";;;;;;;;;;;;;;;;AACuD;AAEyB;;;AAEhF,MAAM,MAAM,GAAW;IACrB;QACE,IAAI,EAAE,EAAE;QACR,SAAS,EAAE,yFAA4B;KACxC;CACF,CAAC;AAOK,MAAM,gCAAgC;;gHAAhC,gCAAgC;6HAAhC,gCAAgC;iIAHlC,CAAC,kEAAqB,CAAC,MAAM,CAAC,CAAC,EAC9B,yDAAY;mIAEX,gCAAgC,oFAFjC,yDAAY;;;;;;;;;;;;;;;;;;;;;;;;;;IEQxB,yEAAqC;IAEjC,qFAA+D;IACjE,4DAAM;;;IADkB,0DAAiB;IAAjB,iFAAiB;;ADbpC,MAAM,4BAA4B;IAKvC,YACU,aAA4B,EAC5B,YAAmB;QADnB,kBAAa,GAAb,aAAa,CAAe;QAC5B,iBAAY,GAAZ,YAAY,CAAO;QAN7B,WAAM,GAAkB,IAAI,CAAC;QAErB,kBAAa,GAAwB,EAAE,CAAC;QAM9C,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,mCAAmC,CAAC,CAAC;QAChE,IAAI,CAAC,aAAa,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC;IAC9C,CAAC;IAED,QAAQ;QACN,IAAI,CAAC,aAAa,CAAC,IAAI,CACrB,IAAI,CAAC,aAAa,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC,IAAmB,EAAE,EAAE;YAClE,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;YAEnB,IAAI,IAAI,EAAE;gBACR,IAAI,CAAC,MAAM,qBAAQ,IAAI,CAAE,CAAC;aAC3B;QACH,CAAC,CAAC,CACH,CAAC;IACJ,CAAC;IAED,WAAW;QACT,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE;YACjC,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;gBACjC,GAAG,CAAC,WAAW,EAAE,CAAC;YACpB,CAAC,CAAC,CAAC;SACJ;IACH,CAAC;;wGA/BU,4BAA4B;0HAA5B,4BAA4B;QCZzC,yEAAiB;QAET,uEAAY;QAAA,4DAAK;QAErB,oEAAG;QACD,+NAGF;QAAA,4DAAI;QACJ,oEAAG;QACD,uDAEF;QAAA,4DAAI;QACJ,oEAAG;QACD,wIAEF;QAAA,4DAAI;QACJ,qEAAG;QACD,wDACF;QAAA,4DAAI;QAIR,0HAIM;;QAjBA,0DAEF;QAFE,uLAEF;QAME,0DACF;QADE,6KACF;QAIE,0DAAY;QAAZ,4EAAY;;;;;;;;;;;;;;;;;;;;;ACtB6B;AAE8D;AACpB;AACT;;AAUzE,MAAM,yBAAyB;;kGAAzB,yBAAyB;sHAAzB,yBAAyB;0HAN3B;YACP,yDAAY;YACZ,kGAAgC;YAChC,uHAAqB;SACtB;mIAEU,yBAAyB,mBAPrB,yFAA4B,aAEzC,yDAAY;QACZ,kGAAgC;QAChC,uHAAqB","sources":["./src/app/views/loan/skipped-confirmation/skipped-confirmation-routing.module.ts","./src/app/views/loan/skipped-confirmation/skipped-confirmation.component.ts","./src/app/views/loan/skipped-confirmation/skipped-confirmation.component.html","./src/app/views/loan/skipped-confirmation/skipped-confirmation.module.ts"],"sourcesContent":["import { NgModule } from '@angular/core';\nimport { RouterModule, Routes } from '@angular/router';\n\nimport { SkippedConfirmationComponent } from './skipped-confirmation.component';\n\nconst routes: Routes = [\n {\n path: '',\n component: SkippedConfirmationComponent,\n },\n];\n\n@NgModule({\n declarations: [],\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class SkippedConfirmationRoutingModule {}\n","import { Component, OnDestroy, OnInit } from '@angular/core';\nimport { Title } from '@angular/platform-browser';\nimport { Subscription } from 'rxjs';\n\nimport { Branch } from 'src/app/services/branch/branch.model';\nimport { BranchService } from 'src/app/services/branch/branch.service';\n\n@Component({\n selector: 'app-skipped-confirmation',\n templateUrl: './skipped-confirmation.component.html',\n styleUrls: ['./skipped-confirmation.component.scss'],\n})\nexport class SkippedConfirmationComponent implements OnInit, OnDestroy {\n branch: Branch | null = null;\n\n private subscriptions: Array = [];\n\n constructor(\n private branchService: BranchService,\n private titleService: Title\n ) {\n this.titleService.setTitle('Eagle Loan | Skipped Confirmation');\n this.branchService.setShowInfoButton(false);\n }\n\n ngOnInit(): void {\n this.subscriptions.push(\n this.branchService.selectedBranch.subscribe((data: Branch | null) => {\n this.branch = null;\n\n if (data) {\n this.branch = { ...data };\n }\n })\n );\n }\n\n ngOnDestroy(): void {\n if (this.subscriptions.length > 0) {\n this.subscriptions.forEach((sub) => {\n sub.unsubscribe();\n });\n }\n }\n}\n","
\n
\n

Confirmation

\n\n

\n Thank you! You have successfully started the application process. A\n representative from Eagle will contact you within one business day\n regarding your application.\n

\n

\n For reference, your information was sent to our\n {{ branch?.LocationName }} branch.\n

\n

\n If approved, you will need to visit one of our branches to close your\n loan.\n

\n

\n Questions? Contact {{ branch?.LocationName }} - we’re here to help!\n

\n
\n
\n\n
\n
\n \n
\n
\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { BranchSelectionModule } from 'src/app/components/branches/branch-selection/branch-selection.module';\nimport { SkippedConfirmationRoutingModule } from './skipped-confirmation-routing.module';\nimport { SkippedConfirmationComponent } from './skipped-confirmation.component';\n\n@NgModule({\n declarations: [SkippedConfirmationComponent],\n imports: [\n CommonModule,\n SkippedConfirmationRoutingModule,\n BranchSelectionModule,\n ],\n})\nexport class SkippedConfirmationModule {}\n"],"names":[],"sourceRoot":"webpack:///"}