Skip to content

Commit

Permalink
chore: revert ui changes
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismclarke committed Sep 16, 2023
1 parent e6407fe commit b6c360b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion apps/picsa-apps/extension-app/src/app/app.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="page" *ngIf="showUI">
<div class="page">
<picsa-header></picsa-header>
<router-outlet></router-outlet>
</div>
6 changes: 0 additions & 6 deletions apps/picsa-apps/extension-app/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ import { PerformanceService } from '@picsa/shared/services/core/performance.serv
export class AppComponent {
title = 'extension-toolkit';

public showUI = false;

constructor(
private analyticsService: AnalyticsService,
private router: Router,
Expand All @@ -31,9 +29,5 @@ export class AppComponent {
if (ENVIRONMENT.production) {
this.analyticsService.init(this.router);
}
console.log('showing ui');
this.showUI = true;

// TODO - only show main display after troubleshooter closed?
}
}

0 comments on commit b6c360b

Please sign in to comment.