From 4671682494eee536a8c757f6d44b118f99f2bcd2 Mon Sep 17 00:00:00 2001 From: Luciano Balmaceda Date: Mon, 26 Jun 2017 14:49:52 -0300 Subject: [PATCH] Add missing import to the WebAuth controller file --- webauth/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webauth/index.js b/webauth/index.js index 7fdfb821..eda81edb 100644 --- a/webauth/index.js +++ b/webauth/index.js @@ -5,7 +5,8 @@ import { } from 'react-native'; import url from 'url'; -import Auth0Error from '../auth/authError'; +import Auth0Error from '../auth/auth0Error'; +import AuthError from '../auth/authError'; const { A0Auth0 } = NativeModules; @@ -95,4 +96,4 @@ export default class WebAuth { }); }); } -} \ No newline at end of file +}