diff --git a/matsen-tool/src/app/_components/modal/modal.component.html b/matsen-tool/src/app/_components/modal/modal.component.html
deleted file mode 100644
index 3ac6f29..0000000
--- a/matsen-tool/src/app/_components/modal/modal.component.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/matsen-tool/src/app/_components/modal/modal.component.scss b/matsen-tool/src/app/_components/modal/modal.component.scss
deleted file mode 100644
index e69de29..0000000
diff --git a/matsen-tool/src/app/_components/modal/modal.component.spec.ts b/matsen-tool/src/app/_components/modal/modal.component.spec.ts
deleted file mode 100644
index bbcf46d..0000000
--- a/matsen-tool/src/app/_components/modal/modal.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { ModalComponent } from './modal.component';
-
-describe('ModalComponent', () => {
- let component: ModalComponent;
- let fixture: ComponentFixture;
-
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- declarations: [ModalComponent]
- })
- .compileComponents();
-
- fixture = TestBed.createComponent(ModalComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});
diff --git a/matsen-tool/src/app/_components/modal/modal.component.ts b/matsen-tool/src/app/_components/modal/modal.component.ts
deleted file mode 100644
index 0eeef9a..0000000
--- a/matsen-tool/src/app/_components/modal/modal.component.ts
+++ /dev/null
@@ -1,38 +0,0 @@
-import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core';
-import {NgbActiveModal} from "@ng-bootstrap/ng-bootstrap";
-
-@Component({
- selector: 'app-modal',
- templateUrl: './modal.component.html',
- styleUrl: './modal.component.scss',
-})
-export class ModalComponent implements OnInit {
- @Input() dynamicComponent: any;
- @Input() inputData: any;
- @Output() public submit: EventEmitter = new EventEmitter();
-
- constructor(public activeModal: NgbActiveModal) {
-
- }
-
- ngOnInit(): void {
- // this.submit.emit("flo is toll");
- // this.dynamicComponent.submit.subscribe(() => {
- // console.log('Ereignis von dynamischer Komponente empfangen');
- // // Hier kannst du die Logik für das Abfangen des Ereignisses implementieren
- // });
- }
-
- onSubmit() {
- console.log("FLOR");
- }
-
- onChildSubmit($event: any) {
- this.submit.emit($event);
- }
-
- public static createInputData(inputData: any) {
- return { 'inputData': inputData }
- }
-
-}
diff --git a/matsen-tool/src/app/app.module.ts b/matsen-tool/src/app/app.module.ts
index 0f26c99..708d964 100644
--- a/matsen-tool/src/app/app.module.ts
+++ b/matsen-tool/src/app/app.module.ts
@@ -25,7 +25,6 @@ import {PartnersDetailComponent} from './partners/partners-detail/partners-detai
import {NewContactComponent} from './contacts/new-contact/new-contact.component';
import {ContactsComponent} from './contacts/contacts.component';
import {ContactsDetailComponent} from './contacts/contacts-detail/contacts-detail.component';
-import {ModalComponent} from './_components/modal/modal.component';
import {PropertyInterceptor} from "@app/_helpers/property.interceptor";
import {MatPaginatorModule} from "@angular/material/paginator";
import {MatSortModule} from "@angular/material/sort";
@@ -93,7 +92,6 @@ export function HttpLoaderFactory(http: HttpClient) {
HomeComponent,
TwoColumnComponent,
ProductsDetailComponent,
- ModalComponent,
PartnersDetailComponent,
NewContactComponent,
ContactsComponent,
diff --git a/matsen-tool/src/app/documents/documents.component.ts b/matsen-tool/src/app/documents/documents.component.ts
index ae214f9..4f9dd95 100644
--- a/matsen-tool/src/app/documents/documents.component.ts
+++ b/matsen-tool/src/app/documents/documents.component.ts
@@ -7,11 +7,9 @@ import {Router, RouterLink, RouterLinkActive} from "@angular/router";
import {MatTableDataSource, MatTableModule} from "@angular/material/table";
import {OrderFilter} from "@app/_models/orderFilter";
import {NgIf} from "@angular/common";
-import {ModalComponent} from "@app/_components/modal/modal.component";
import {NgbModal, NgbModalOptions} from "@ng-bootstrap/ng-bootstrap";
import {NewDocumentComponent} from "@app/documents/new-document/new-document.component";
import {TranslateModule} from "@ngx-translate/core";
-import {NewProductComponent} from "@app/products/new-product/new-product.component";
import {ModalStatus} from "@app/_helpers/modal.states";
@Component({