From dc587f804c85e4ab78a12a19a1b601e0fac1d212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hern=C3=A1n=20Lagos?= Date: Sat, 27 Jun 2026 18:45:22 -0400 Subject: [PATCH] Fix unused standalone imports warnings --- .../orcid-badge-and-tooltip.component.ts | 6 +----- .../sections/upload/file/section-upload-file.component.ts | 2 -- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/src/app/shared/orcid-badge-and-tooltip/orcid-badge-and-tooltip.component.ts b/src/app/shared/orcid-badge-and-tooltip/orcid-badge-and-tooltip.component.ts index df00af09f21..ab3f3403517 100644 --- a/src/app/shared/orcid-badge-and-tooltip/orcid-badge-and-tooltip.component.ts +++ b/src/app/shared/orcid-badge-and-tooltip/orcid-badge-and-tooltip.component.ts @@ -1,7 +1,4 @@ -import { - AsyncPipe, - NgClass, -} from '@angular/common'; +import { AsyncPipe } from '@angular/common'; import { Component, Input, @@ -28,7 +25,6 @@ import { getFirstSucceededRemoteDataPayload } from '../../core/shared/operators' imports: [ AsyncPipe, NgbTooltip, - NgClass, ], templateUrl: './orcid-badge-and-tooltip.component.html', styleUrl: './orcid-badge-and-tooltip.component.scss', diff --git a/src/themes/custom/app/submission/sections/upload/file/section-upload-file.component.ts b/src/themes/custom/app/submission/sections/upload/file/section-upload-file.component.ts index a6a39ba657a..9304628e006 100644 --- a/src/themes/custom/app/submission/sections/upload/file/section-upload-file.component.ts +++ b/src/themes/custom/app/submission/sections/upload/file/section-upload-file.component.ts @@ -4,7 +4,6 @@ import { TranslateModule } from '@ngx-translate/core'; import { SubmissionSectionUploadFileComponent as BaseComponent } from 'src/app/submission/sections/upload/file/section-upload-file.component'; import { BtnDisabledDirective } from '../../../../../../../app/shared/btn-disabled.directive'; -import { ThemedFileDownloadLinkComponent } from '../../../../../../../app/shared/file-download-link/themed-file-download-link.component'; import { SubmissionSectionUploadFileViewComponent } from '../../../../../../../app/submission/sections/upload/file/view/section-upload-file-view.component'; @Component({ @@ -17,7 +16,6 @@ import { SubmissionSectionUploadFileViewComponent } from '../../../../../../../a AsyncPipe, BtnDisabledDirective, SubmissionSectionUploadFileViewComponent, - ThemedFileDownloadLinkComponent, TranslateModule, ], })