Skip to content

Commit

Permalink
chore(core): Fix circular import causing tests to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Feb 6, 2024
1 parent cd80b7d commit 1b2b139
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ import { CurrencyCode } from '@vendure/common/lib/generated-types';
import { DeepPartial, ID } from '@vendure/common/lib/shared-types';
import { Column, Entity, Index, ManyToOne } from 'typeorm';

import { CustomProductVariantPriceFields, HasCustomFields } from '../..';
import { HasCustomFields } from '../../config/custom-field/custom-field-types';
import { VendureEntity } from '../base/base.entity';
import { CustomProductVariantPriceFields } from '../custom-entity-fields';
import { EntityId } from '../entity-id.decorator';
import { Money } from '../money.decorator';

Expand Down

0 comments on commit 1b2b139

Please sign in to comment.