Implements Lazy Loading

This commit is contained in:
2023-12-29 04:48:18 -03:00
parent da8d1467f8
commit c84557611c
23 changed files with 90 additions and 115 deletions

View File

@@ -1,5 +1,5 @@
import { Component, EventEmitter, Output } from '@angular/core';
import { AuthService } from '../../../../shared/auth/auth.service';
import { AuthService } from '../../../../shared/service/auth.service';
@Component({
selector: 'app-profile-picture-picker',
@@ -8,7 +8,7 @@ import { AuthService } from '../../../../shared/auth/auth.service';
})
export class ProfilePicturePickerComponent {
@Output()
imageSent = new EventEmitter<boolean>();
imageSent = new EventEmitter<boolean>();
private profilePicture!: File;