Skip to content

Commit

Permalink
Merge pull request #744 from ripio/hotfix/terms-copy
Browse files Browse the repository at this point in the history
Hotfix/terms copy
  • Loading branch information
NicolasMenendez authored Jul 30, 2021
2 parents 0684906 + 325a594 commit 9533699
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const routes: Routes = [
loadChildren: () => import('./views/create-loan/create-loan.module').then(m => m.CreateLoanModule)
},
{
path: 'terms',
path: 'disclaimer',
loadChildren: () => import('./views/terms/terms.module').then(m => m.TermsModule)
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/app/core/navrail/navrail.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<a
class="menu__item"
routerLinkActive="menu__item--active"
[routerLink]="['/terms']"
[routerLink]="['/disclaimer']"
>
Disclaimer
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/terms/terms.component.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="page-content">
<div class="container pt-3 pt-lg-0">
<app-page-header
title="Terms of Use"
title="Disclaimer"
></app-page-header>
<div class="terms">
<p>
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/terms/terms.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class TermsComponent implements OnInit {
) { }

ngOnInit() {
this.titleService.changeTitle(`Terms of Use`);
this.titleService.changeTitle(`Disclaimer`);
}

}

0 comments on commit 9533699

Please sign in to comment.