Skip to content

Commit

Permalink
fix(store-devtools): Fix @ngrx/store imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dummdidumm committed Aug 22, 2018
1 parent aa9fe8e commit 8b90cf2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/store-devtools/src/devtools-dispatcher.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ActionsSubject } from "../../store/src";
import { Injectable } from "@angular/core";
import { ActionsSubject } from '@ngrx/store';
import { Injectable } from '@angular/core';

@Injectable()
export class DevtoolsDispatcher extends ActionsSubject {}
2 changes: 1 addition & 1 deletion modules/store-devtools/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {
sanitizeStates,
unliftState,
} from './utils';
import { UPDATE } from '../../store/src';
import { UPDATE } from '@ngrx/store';
import { DevtoolsDispatcher } from './devtools-dispatcher';

export const ExtensionActionTypes = {
Expand Down

0 comments on commit 8b90cf2

Please sign in to comment.