Describe the bug
"aws-amplify-angular": "^2.0.13" has a bug in src/providers/auth.decorator.ts
import { Subject } from 'rxjs/Subject';
should be
import { Subject } from 'rxjs';
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context
Add any other context about the problem here.
You can turn on the debug mode to provide more info for us by setting window.LOG_LEVEL = 'DEBUG'; in your app.
@chenji28 A fix for this has been merged into our @unstable tag in npm, and should be available in our main build in a while.
@haverchuck
import { Subject, Observable } from 'rxjs';
import { Subject } from 'rxjs/Subject';
Actually it appears to be aws-amplify-angular 3.0.1. aws-amplify-angular 2.1.12 with aws-amplify 1.1.26 does not show this error.
It appears that this error was reintroduced in commit: 86310899b68a537f050e14da68d3649ce7476cfb.
Most helpful comment
@haverchuck
import { Subject, Observable } from 'rxjs';import { Subject } from 'rxjs/Subject';