X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bsignup%2F%2Bverify-account%2Fverify-account-routing.module.ts;h=d53a5ed780599a652299dc84eb6e170c0d1320e1;hb=HEAD;hp=67c80ae9337a5d3a71cc950c036c05c1c11b246c;hpb=dc5bb5cea5bf7e906caa6d9c5468e6de36e605de;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+signup/+verify-account/verify-account-routing.module.ts b/client/src/app/+signup/+verify-account/verify-account-routing.module.ts index 67c80ae93..d53a5ed78 100644 --- a/client/src/app/+signup/+verify-account/verify-account-routing.module.ts +++ b/client/src/app/+signup/+verify-account/verify-account-routing.module.ts @@ -1,13 +1,11 @@ import { NgModule } from '@angular/core' import { RouterModule, Routes } from '@angular/router' -import { MetaGuard } from '@ngx-meta/core' -import { VerifyAccountEmailComponent } from './verify-account-email/verify-account-email.component' import { VerifyAccountAskSendEmailComponent } from './verify-account-ask-send-email/verify-account-ask-send-email.component' +import { VerifyAccountEmailComponent } from './verify-account-email/verify-account-email.component' const verifyAccountRoutes: Routes = [ { path: '', - canActivateChild: [ MetaGuard ], children: [ { path: 'email', @@ -23,7 +21,7 @@ const verifyAccountRoutes: Routes = [ component: VerifyAccountAskSendEmailComponent, data: { meta: { - title: $localize`Ask to send an email to verify you account` + title: $localize`Ask to send an email to verify your account` } } }