Skip to content

Commit

Permalink
Remove old console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
floogulinc committed Dec 23, 2023
1 parent 481c4e1 commit 2670c96
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/app/upload-file/upload-file.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export class UploadFileComponent implements OnInit {
readonly totalBytes$ = this.state.select('totalBytes')

onSubmit() {
console.log(this.uploadForm.value);
this.handleUpload();
}

Expand All @@ -68,7 +67,6 @@ export class UploadFileComponent implements OnInit {
try {
this.state.set({filename: file.name})
const response = await lastValueFrom(this.uploadService.addFile(file).pipe(
tap(x => console.log(x)),
tap(event => {
if (event.type === HttpEventType.UploadProgress) {

Expand Down

0 comments on commit 2670c96

Please sign in to comment.