Skip to content

Commit 0648592

Browse files
committed
Fix lint: unused imports, import sort, trailing commas
1 parent 52ef654 commit 0648592

2 files changed

Lines changed: 13 additions & 5 deletions

File tree

src/app/datashare/datashare-submission-form-section-container.service.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
import { Injectable, signal } from '@angular/core';
1+
import {
2+
Injectable,
3+
signal,
4+
} from '@angular/core';
25

36
@Injectable({
4-
providedIn: 'root'
7+
providedIn: 'root',
58
})
69
export class DatashareSubmissionFormSectionContainerService {
710

src/app/datashare/datashare-submission.service.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
import { Injectable, computed, signal } from '@angular/core';
2-
import { Observable, BehaviorSubject, take, switchMap, of as observableOf, map, filter, } from 'rxjs';
3-
import { NotificationsService } from '../shared/notifications/notifications.service';
1+
import {
2+
computed,
3+
Injectable,
4+
signal,
5+
} from '@angular/core';
46
import { TranslateService } from '@ngx-translate/core';
7+
import { Observable } from 'rxjs';
8+
9+
import { NotificationsService } from '../shared/notifications/notifications.service';
510

611
@Injectable({
712
providedIn: 'root'

0 commit comments

Comments
 (0)