Skip to content

Commit

Permalink
Fix/amplify service rxjs imports (aws-amplify#4862)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidHospital authored May 11, 2020
1 parent ad4367a commit 9e0fc92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
// tslint:enable

import { Injectable, Optional, Inject } from '@angular/core';
import { Subject } from 'rxjs/Subject';
import { Observable } from 'rxjs/Observable';
import { Observable, Subject } from 'rxjs';
import Amplify, { Logger, I18n } from '@aws-amplify/core';
import { AuthState } from './auth.state';
import { authDecorator } from './auth.decorator';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Subject } from 'rxjs/Subject';
import { Subject } from 'rxjs';
import { Amplify, Logger, Hub } from '@aws-amplify/core';
import { AuthState } from './auth.state';
import * as _ from 'lodash';
Expand Down

0 comments on commit 9e0fc92

Please sign in to comment.