diff --git a/src/main/webapp/app/home/home.component.html b/src/main/webapp/app/home/home.component.html
index b98006e1..d098c058 100644
--- a/src/main/webapp/app/home/home.component.html
+++ b/src/main/webapp/app/home/home.component.html
@@ -43,7 +43,7 @@
Create Application
-
+
diff --git a/src/main/webapp/app/home/home.component.ts b/src/main/webapp/app/home/home.component.ts
index d8a878fc..3ce74c1a 100644
--- a/src/main/webapp/app/home/home.component.ts
+++ b/src/main/webapp/app/home/home.component.ts
@@ -34,13 +34,8 @@ export class HomeComponent implements OnInit, OnDestroy {
account: Account | null = null;
authSubscription?: Subscription;
gitConfig: GitConfigurationModel;
- enableAzure = false;
- constructor(
- private accountService: AccountService,
- private gitConfigurationService: GitConfigurationService,
- public route: ActivatedRoute
- ) {
+ constructor(private accountService: AccountService, private gitConfigurationService: GitConfigurationService) {
this.gitConfig = this.gitConfigurationService.gitConfig;
}
@@ -50,8 +45,6 @@ export class HomeComponent implements OnInit, OnDestroy {
this.account = account;
this.gitConfigurationService.setupGitConfiguration();
});
- // TODO: remove this feature flag once the Azure generator is ready
- this.enableAzure = Boolean(this.route.snapshot.queryParams['enableAzure']);
}
isAuthenticated(): boolean {