From b53c564328016f27cc65b3a79f2a547b5f4b9421 Mon Sep 17 00:00:00 2001 From: anniero98 Date: Wed, 29 Apr 2020 21:16:37 -0700 Subject: [PATCH] [NPO-requested changes] 500 points upon signup, remove # days from delivery date (#139) --- screens/auth/SignUpScreen.js | 3 ++- screens/map/ProductsScreen.js | 3 --- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/screens/auth/SignUpScreen.js b/screens/auth/SignUpScreen.js index ed8598fc..9deb1c2c 100644 --- a/screens/auth/SignUpScreen.js +++ b/screens/auth/SignUpScreen.js @@ -136,7 +136,8 @@ export default class SignUpScreen extends React.Component { const customerId = await createCustomers({ name, phoneNumber, - points: 0, + // 2020/4/29 update for Nam's launch + points: 500, pushTokenIds: pushTokenId ? [pushTokenId] : null, }); diff --git a/screens/map/ProductsScreen.js b/screens/map/ProductsScreen.js index 3eadc9f6..519a0c44 100644 --- a/screens/map/ProductsScreen.js +++ b/screens/map/ProductsScreen.js @@ -57,9 +57,6 @@ export default class ProductsScreen extends React.Component { {`Products (${products.length})`} - - {`Delivered in the last ${deliveryFrequency} days`} - } ListFooterComponent={}