Skip to content

Commit

Permalink
chore(api): projects: fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
kgajowy committed May 31, 2021
1 parent 4fd18ff commit 875c655
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/apps/api/src/modules/scenarios/scenarios.service.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { forwardRef, Inject, Injectable, Logger } from '@nestjs/common';
import { forwardRef, Inject, Injectable } from '@nestjs/common';
import { InjectRepository } from '@nestjs/typeorm';
import { AppInfoDTO } from '@marxan-api/dto/info.dto';
import { Repository, SelectQueryBuilder } from 'typeorm';
Expand All @@ -14,7 +14,7 @@ import {
} from '@marxan-api/utils/app-base.service';
import { Project } from '@marxan-api/modules/projects/project.api.entity';
import { ProtectedAreasService } from '@marxan-api/modules/protected-areas/protected-areas.service';
import { ProjectsCrudService } from '@marxan-api/modules/projects/projects-crud';
import { ProjectsCrudService } from '@marxan-api/modules/projects/projects-crud.service';
import { concat } from 'lodash';
import { AppConfig } from '@marxan-api/utils/config.utils';
import { WdpaAreaCalculationService } from './wdpa-area-calculation.service';
Expand Down

0 comments on commit 875c655

Please sign in to comment.