From 84345174a4fb0b9cf9ce672194cce34f178d472b Mon Sep 17 00:00:00 2001 From: Annie Wang Date: Sun, 19 Apr 2020 12:41:30 -0700 Subject: [PATCH 1/4] Fix hiding passwords on Android --- components/AuthTextField.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/AuthTextField.js b/components/AuthTextField.js index 454803d4..a93b0d79 100644 --- a/components/AuthTextField.js +++ b/components/AuthTextField.js @@ -34,7 +34,7 @@ function AuthTextField({ error={error} errorColor={Colors.error} returnKeyType="done" - keyboardType={fieldType === 'Phone Number' ? 'numeric' : 'default'} + keyboardType={fieldType === 'Phone Number' ? 'numeric' : undefined} maxLength={fieldType === 'Phone Number' ? 10 : null} secureTextEntry={fieldType === 'Password'} labelPadding={6} From 427e15c1bc95f88d0b4424f867dc512b3f30cba2 Mon Sep 17 00:00:00 2001 From: Annie Wang Date: Sun, 19 Apr 2020 13:06:30 -0700 Subject: [PATCH 2/4] Adding padding to continue as guest button --- screens/auth/WelcomeScreen.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screens/auth/WelcomeScreen.js b/screens/auth/WelcomeScreen.js index 6d345a96..da3eaa11 100644 --- a/screens/auth/WelcomeScreen.js +++ b/screens/auth/WelcomeScreen.js @@ -50,7 +50,7 @@ export default class WelcomeScreen extends React.Component { this.guestLogin()}> Date: Sun, 19 Apr 2020 13:32:36 -0700 Subject: [PATCH 3/4] Fixed google maps directions bug --- lib/mapUtils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/mapUtils.js b/lib/mapUtils.js index cf7ab4f0..0650afa1 100644 --- a/lib/mapUtils.js +++ b/lib/mapUtils.js @@ -254,6 +254,7 @@ export function openDirections(latitude, longitude, storeName) { latitude, longitude, title: storeName, + googleForceLatLon: true, googlePlaceId: 'ChIJW-T2Wt7Gt4kRKl2I1CJFUsI', alwaysIncludeGoogle: true, }); From ab66cec4b3ac7e92acb53a2fd585b18a3cdc1a53 Mon Sep 17 00:00:00 2001 From: Annie Wang Date: Sun, 19 Apr 2020 23:54:34 -0700 Subject: [PATCH 4/4] Reverted forcelatlon after review issues --- lib/mapUtils.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/mapUtils.js b/lib/mapUtils.js index 0650afa1..cf7ab4f0 100644 --- a/lib/mapUtils.js +++ b/lib/mapUtils.js @@ -254,7 +254,6 @@ export function openDirections(latitude, longitude, storeName) { latitude, longitude, title: storeName, - googleForceLatLon: true, googlePlaceId: 'ChIJW-T2Wt7Gt4kRKl2I1CJFUsI', alwaysIncludeGoogle: true, });