Skip to content

Commit

Permalink
More TypeScript import fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mraible committed Apr 4, 2024
1 parent b0909da commit dc1e976
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { ActivatedRoute } from '@angular/router';
import { Observable } from 'rxjs';
import { finalize, map } from 'rxjs/operators';

import { PointsService } from '../service/points.service';
import { IPoints } from '../points.model';
import { PointsFormService, PointsFormGroup } from './points-form.service';
import { IPoints } from '../points.model';
import { PointsService } from '../service/points.service';
import { IUser } from 'app/entities/user/user.model';
import { UserService } from 'app/entities/user/user.service';
import dayjs from 'dayjs/esm';
Expand Down
1 change: 1 addition & 0 deletions src/main/webapp/app/home/home.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { of, Subject } from 'rxjs';

import { AccountService } from 'app/core/auth/account.service';
import { Account } from 'app/core/auth/account.model';

import { HomeComponent } from './home.component';
import { HttpClientTestingModule } from '@angular/common/http/testing';

Expand Down

0 comments on commit dc1e976

Please sign in to comment.