Skip to content

Commit

Permalink
fix(admin-ui): Correct bad imports
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Dec 4, 2019
1 parent 6340045 commit 3cd74ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/admin-ui/src/app/data/providers/base-data.service.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import {
isEntityCreateOrUpdateMutation,
removeReadonlyCustomFields,
} from '@vendure/admin-ui/src/app/data/utils/remove-readonly-custom-fields';
import { Apollo } from 'apollo-angular';
import { DataProxy } from 'apollo-cache';
import { WatchQueryFetchPolicy } from 'apollo-client';
Expand All @@ -17,6 +13,10 @@ import { LocalStorageService } from '../../core/providers/local-storage/local-st
import { QueryResult } from '../query-result';
import { ServerConfigService } from '../server-config';
import { addCustomFields } from '../utils/add-custom-fields';
import {
isEntityCreateOrUpdateMutation,
removeReadonlyCustomFields,
} from '../utils/remove-readonly-custom-fields';

/**
* Make the MutationUpdaterFn type-safe until this issue is resolved: https://github.com/apollographql/apollo-link/issues/616
Expand Down

0 comments on commit 3cd74ab

Please sign in to comment.