From d030a5ac134d00f8ff3ae71d9cedcb8ab7691ba6 Mon Sep 17 00:00:00 2001 From: "Situ Chandra Shil (via MelvinBot)" Date: Thu, 23 Jul 2026 03:56:48 +0000 Subject: [PATCH 1/4] Refactor PersonalInfo loader to ActivityIndicator Co-authored-by: Situ Chandra Shil --- .../USD/Requestor/PersonalInfo/PersonalInfo.tsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/pages/ReimbursementAccount/USD/Requestor/PersonalInfo/PersonalInfo.tsx b/src/pages/ReimbursementAccount/USD/Requestor/PersonalInfo/PersonalInfo.tsx index 8fd021def581..717819169dd9 100644 --- a/src/pages/ReimbursementAccount/USD/Requestor/PersonalInfo/PersonalInfo.tsx +++ b/src/pages/ReimbursementAccount/USD/Requestor/PersonalInfo/PersonalInfo.tsx @@ -1,4 +1,4 @@ -import FullScreenLoadingIndicator from '@components/FullscreenLoadingIndicator'; +import ActivityIndicator from '@components/ActivityIndicator'; import InteractiveStepWrapper from '@components/InteractiveStepWrapper'; import useLocalize from '@hooks/useLocalize'; @@ -6,6 +6,7 @@ import useOnyx from '@hooks/useOnyx'; import useReimbursementAccountSubmitCallback from '@hooks/useReimbursementAccountSubmitCallback'; import useSubPage from '@hooks/useSubPage'; import type {SubPageProps} from '@hooks/useSubPage/types'; +import useThemeStyles from '@hooks/useThemeStyles'; import Navigation from '@libs/Navigation/Navigation'; import {getBankAccountIDAsNumber} from '@libs/ReimbursementAccountUtils'; @@ -21,7 +22,7 @@ import ROUTES from '@src/ROUTES'; import INPUT_IDS from '@src/types/form/ReimbursementAccountForm'; import type {ForwardedRef} from 'react'; -import type {View} from 'react-native'; +import {View} from 'react-native'; import React, {useCallback, useMemo} from 'react'; @@ -59,6 +60,7 @@ const pages = [ function PersonalInfo({onBackButtonPress, onSubmit, ref, backTo}: PersonalInfoProps) { const {translate} = useLocalize(); + const styles = useThemeStyles(); const [reimbursementAccount] = useOnyx(ONYXKEYS.REIMBURSEMENT_ACCOUNT); const [reimbursementAccountDraft] = useOnyx(ONYXKEYS.FORMS.REIMBURSEMENT_ACCOUNT_FORM_DRAFT); @@ -117,7 +119,12 @@ function PersonalInfo({onBackButtonPress, onSubmit, ref, backTo}: PersonalInfoPr stepNames={CONST.BANK_ACCOUNT.STEP_NAMES} > {isRedirecting ? ( - + + + ) : ( Date: Thu, 23 Jul 2026 04:03:12 +0000 Subject: [PATCH 2/4] Fix Oxfmt import ordering in PersonalInfo Co-authored-by: Situ Chandra Shil --- .../USD/Requestor/PersonalInfo/PersonalInfo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/ReimbursementAccount/USD/Requestor/PersonalInfo/PersonalInfo.tsx b/src/pages/ReimbursementAccount/USD/Requestor/PersonalInfo/PersonalInfo.tsx index 717819169dd9..e57ce3500d0b 100644 --- a/src/pages/ReimbursementAccount/USD/Requestor/PersonalInfo/PersonalInfo.tsx +++ b/src/pages/ReimbursementAccount/USD/Requestor/PersonalInfo/PersonalInfo.tsx @@ -22,9 +22,9 @@ import ROUTES from '@src/ROUTES'; import INPUT_IDS from '@src/types/form/ReimbursementAccountForm'; import type {ForwardedRef} from 'react'; -import {View} from 'react-native'; import React, {useCallback, useMemo} from 'react'; +import {View} from 'react-native'; import Address from './subSteps/Address'; import Confirmation from './subSteps/Confirmation'; From e594765c6c62151d38d4adf31ee3a561bc4e25df Mon Sep 17 00:00:00 2001 From: "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/issues/comments#get-an-issue-comment\",\"status\":\"404\"} (via MelvinBot)" Date: Sun, 2 Aug 2026 18:16:10 +0000 Subject: [PATCH 3/4] Use styles.fullScreenLoading and remove redundant alignItemsCenter/justifyContentCenter Co-authored-by: {"message":"Not Found","documentation_url":"https://docs.github.com/rest/issues/comments#get-an-issue-comment","status":"404"} <{"message":"Not Found","documentation_url":"https://docs.github.com/rest/issues/comments#get-an-issue-comment","status":"404"}@users.noreply.github.com> --- .../USD/Requestor/PersonalInfo/PersonalInfo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/ReimbursementAccount/USD/Requestor/PersonalInfo/PersonalInfo.tsx b/src/pages/ReimbursementAccount/USD/Requestor/PersonalInfo/PersonalInfo.tsx index e57ce3500d0b..81b1d8f8c07c 100644 --- a/src/pages/ReimbursementAccount/USD/Requestor/PersonalInfo/PersonalInfo.tsx +++ b/src/pages/ReimbursementAccount/USD/Requestor/PersonalInfo/PersonalInfo.tsx @@ -119,7 +119,7 @@ function PersonalInfo({onBackButtonPress, onSubmit, ref, backTo}: PersonalInfoPr stepNames={CONST.BANK_ACCOUNT.STEP_NAMES} > {isRedirecting ? ( - + Date: Tue, 11 Aug 2026 03:34:49 +0000 Subject: [PATCH 4/4] Re-trigger CI: iOS build failed on transient CocoaPods 401 fetching prebuilt RN artifacts Co-authored-by: Situ Chandra Shil