diff --git a/generators/app/templates/app/modules/login/login.utils.ts.ejs b/generators/app/templates/app/modules/login/login.utils.ts.ejs index 9ff9b4564..a0b908b36 100644 --- a/generators/app/templates/app/modules/login/login.utils.ts.ejs +++ b/generators/app/templates/app/modules/login/login.utils.ts.ejs @@ -2,7 +2,6 @@ import { DiscoveryDocument, makeRedirectUri } from 'expo-auth-session'; import * as AuthSession from 'expo-auth-session'; import { generateHexStringAsync, buildCodeAsync } from 'expo-auth-session/src/PKCE'; import { buildQueryString } from 'expo-auth-session/src/QueryParams'; -import { Platform } from 'react-native'; import * as WebBrowser from 'expo-web-browser'; import * as Linking from 'expo-linking'; import AppConfig from '../../config/app-config'; diff --git a/generators/app/templates/test/spec/modules/login/login.sagas.spec.js.ejs b/generators/app/templates/test/spec/modules/login/login.sagas.spec.js.ejs index db8bf0d5f..fd285f79e 100644 --- a/generators/app/templates/test/spec/modules/login/login.sagas.spec.js.ejs +++ b/generators/app/templates/test/spec/modules/login/login.sagas.spec.js.ejs @@ -47,7 +47,6 @@ test('login success path', () => { }) test('login failure path', () => { <%_ if (context.authenticationType === 'oauth2') { _%> - const response = FixtureAPI.getOauthInfo() const step = stepper(login(FixtureAPI)) expect(step()).toEqual(select(selectAuthInfo));