From a1aee3262beca91c33239f970bf4804ae6bcb53c Mon Sep 17 00:00:00 2001 From: shafi54 <108669266+shafi-aviz@users.noreply.github.com> Date: Wed, 18 Feb 2026 02:29:01 +0530 Subject: [PATCH] enh --- apps/backend/.env | 3 +-- apps/user-ui/src/components/AddressForm.tsx | 8 ++++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/apps/backend/.env b/apps/backend/.env index c0a8fea..7e23b79 100755 --- a/apps/backend/.env +++ b/apps/backend/.env @@ -1,6 +1,5 @@ - ENV_MODE=PROD -DATABASE_URL=postgresql://postgres:meatfarmer_master_password@57.128.212.174:7447/meatfarmer #technocracy +DATABASE_URL=postgresql://postgres:meatfarmer_master_password@57.128.212.174:7447/meatfarmer #technocracy # DATABASE_URL=postgres://postgres:meatfarmer_master_password@5.223.55.14:7447/meatfarmer #hetzner PHONE_PE_BASE_URL=https://api-preprod.phonepe.com/ PHONE_PE_CLIENT_ID=TEST-M23F2IGP34ZAR_25090 diff --git a/apps/user-ui/src/components/AddressForm.tsx b/apps/user-ui/src/components/AddressForm.tsx index b58a664..30a45f5 100644 --- a/apps/user-ui/src/components/AddressForm.tsx +++ b/apps/user-ui/src/components/AddressForm.tsx @@ -6,7 +6,7 @@ import * as Yup from 'yup'; import { tw, MyText, MyTouchableOpacity , Checkbox , MyTextInput , LoadingDialog } from 'common-ui'; import { trpc } from '../trpc-client'; import LocationAttacher from './LocationAttacher'; -import KeyBoardAwareScrollView from 'react-native-keyboard-aware-scroll-view'; +import {KeyboardAwareScrollView} from 'react-native-keyboard-aware-scroll-view'; interface AddressFormProps { onSuccess: (addressId?: number) => void; @@ -74,8 +74,8 @@ const AddressForm: React.FC = ({ onSuccess, initialValues, isE }); return ( - @@ -262,7 +262,7 @@ const AddressForm: React.FC = ({ onSuccess, initialValues, isE open={isSubmitting} message={isEdit ? "Updating address..." : "Adding address..."} /> - + ); };