Skip to content

Commit

Permalink
frontend: Clean appearance component
Browse files Browse the repository at this point in the history
  • Loading branch information
CSantosM committed Nov 6, 2024
1 parent a0ac464 commit c09cbdc
Showing 1 changed file with 4 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
import { ChangeDetectorRef, Component } from '@angular/core';
import { DynamicGridComponent, LogoCardComponent, ProFeatureCardComponent } from '../../../components';
import { Component } from '@angular/core';
import { DynamicGridComponent, ProFeatureCardComponent } from '../../../components';

@Component({
selector: 'ov-appearance',
standalone: true,
imports: [DynamicGridComponent, LogoCardComponent, ProFeatureCardComponent],
imports: [DynamicGridComponent, ProFeatureCardComponent],
templateUrl: './appearance.component.html',
styleUrl: './appearance.component.scss'
})
export class AppearanceComponent {
constructor(protected cdr: ChangeDetectorRef) {}

// async ngOnInit() {
// try {
// await this.loadAppearancePreferences();
// this.cdr.detectChanges();
// } catch (error) {}
// }
constructor() {}
}

0 comments on commit c09cbdc

Please sign in to comment.