Skip to content

Commit

Permalink
Fix circular dependency in TracingSubscriptions (#13689)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarkelov authored and gaearon committed Sep 19, 2018
1 parent 518812e commit e1a067d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/scheduler/src/TracingSubscriptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import type {Interaction, Subscriber} from './Tracing';

import {enableSchedulerTracing} from 'shared/ReactFeatureFlags';
import {__subscriberRef} from 'scheduler/tracing';
import {__subscriberRef} from './Tracing';

let subscribers: Set<Subscriber> = (null: any);
if (enableSchedulerTracing) {
Expand Down

0 comments on commit e1a067d

Please sign in to comment.