JS SDK Report Bug Flow Not Sending

Hey, I just joined sentry and the crash reporting is working really well. I recently added Raven.showReportDialog({}); so people report issues but it is not showing up in the User Feedback section. Am I doing something wrong? You can see it in action at shortorange.com -> Report Issue.

Thanks!
Josh

Can you show the entire code you are using? It will need to have access to the last reported event ID. For more complex interactions you might need to manually pass it in.

Code:
Raven.captureException(err.originalError || err);
Raven.showReportDialog();

Where are you bringing up the dialog? In an except handler?

Sorry, yes, I’m using angular 2,:
export class RavenErrorHandler implements ErrorHandler {
handleError(err:any):void {

I’m having same error. Does anyone know the solution?