Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeknovy committed Mar 7, 2024
1 parent 31a15c2 commit e289a91
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/administration/my-profile/my-profile.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import { CommonModule } from "@angular/common";
import { SharedModule } from "../../shared/shared.module";
import { ReactiveFormsModule } from "@angular/forms";
import { MyProfileComponent } from "./my-profile.component";
import {ProjectAdministrationModule} from '../projects/project-administration.module';

import { ProjectAdministrationModule } from "../projects/project-administration.module";


@NgModule({
declarations: [MyProfileComponent],
imports: [
CommonModule, SharedModule, ReactiveFormsModule, ProjectAdministrationModule
],
imports: [
CommonModule, SharedModule, ReactiveFormsModule, ProjectAdministrationModule
],
exports: [MyProfileComponent]
})
export class MyProfileModule { }
export class MyProfileModule {
}

0 comments on commit e289a91

Please sign in to comment.