Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
rrchai committed Apr 2, 2024
1 parent e233830 commit 827a6cb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
1 change: 0 additions & 1 deletion libs/openchallenges/challenge-search/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export * from './lib/challenge-search.routes';
export * from './lib/challenge-search-filters';
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,13 @@ import {
IncentiveLabelPipe,
SubmissionTypeLabelPipe,
} from '@sagebionetworks/openchallenges/util';
// import {
// ChallengeIncentiveLabels,
// ChallengeSubmissionTypeLabels,
// } from './challenge-property-labels';

@Component({
selector: 'openchallenges-challenge-overview',
standalone: true,
imports: [
CommonModule,
MatIconModule,
IncentiveLabelPipe,
MatIconModule,
SubmissionTypeLabelPipe,
],
templateUrl: './challenge-overview.component.html',
Expand All @@ -31,8 +26,6 @@ import {
export class ChallengeOverviewComponent {
@Input({ required: true }) challenge!: Challenge;
organizationCards: OrganizationCard[] = MOCK_ORGANIZATION_CARDS;
// incentiveLabels = ChallengeIncentiveLabels;
// submissionTypeLabels = ChallengeSubmissionTypeLabels;

useNaIfFalsey(str: string | null | undefined) {
return str ?? 'Not available';
Expand Down

0 comments on commit 827a6cb

Please sign in to comment.