aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/app.component.ts
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-04-05 14:37:01 -0400
committersowgro <tpoke.ferrari@gmail.com>2025-04-05 14:37:01 -0400
commitc2e7b170bfa0678a6ff4576d07388778f30084b0 (patch)
tree57fc334bea1bc15f8b971d499338497dd3fa7388 /ufund-ui/src/app/app.component.ts
parent7cedd8713d30fedcc9fc486a49d4804f37ab8765 (diff)
parent0103ffc6f84d04433943c644ab759c1d04b5e681 (diff)
downloadJellySolutions-c2e7b170bfa0678a6ff4576d07388778f30084b0.tar.gz
JellySolutions-c2e7b170bfa0678a6ff4576d07388778f30084b0.tar.bz2
JellySolutions-c2e7b170bfa0678a6ff4576d07388778f30084b0.zip
Merge branch 'main' into need-image
# Conflicts: # ufund-ui/src/app/components/need-list/need-list.component.ts # ufund-ui/src/app/components/need-page/need-page.component.html
Diffstat (limited to 'ufund-ui/src/app/app.component.ts')
-rw-r--r--ufund-ui/src/app/app.component.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/ufund-ui/src/app/app.component.ts b/ufund-ui/src/app/app.component.ts
index bc0e71a..615397f 100644
--- a/ufund-ui/src/app/app.component.ts
+++ b/ufund-ui/src/app/app.component.ts
@@ -5,6 +5,7 @@ import {AuthService} from './services/auth.service';
import {ToastsService} from './services/toasts.service';
import {User, userType} from './models/User';
import {ActivatedRoute, Router} from '@angular/router';
+import {ModalService} from './services/modal.service';
@Component({
selector: 'app-root',
@@ -22,6 +23,7 @@ export class AppComponent implements OnInit {
private route: ActivatedRoute,
protected toastService: ToastsService,
private viewContainerRef: ViewContainerRef,
+ protected modalService: ModalService,
@Inject(DOCUMENT) private document: Document
) {}