Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import useAutoFocusInput from '@hooks/useAutoFocusInput';
import useLocalize from '@hooks/useLocalize';
import useThemeStyles from '@hooks/useThemeStyles';
import {connectToSageIntacct} from '@libs/actions/connections/SageIntacct';
import * as ErrorUtils from '@libs/ErrorUtils';
import {addErrorMessage} from '@libs/ErrorUtils';
import Navigation from '@libs/Navigation/Navigation';
import type {PlatformStackScreenProps} from '@libs/Navigation/PlatformStackNavigation/types';
import type {SettingsNavigatorParamList} from '@libs/Navigation/types';
Expand Down Expand Up @@ -45,7 +45,7 @@ function EnterSageIntacctCredentialsPage({route}: SageIntacctPrerequisitesPagePr
if (values[formItem]) {
return;
}
ErrorUtils.addErrorMessage(errors, formItem, translate('common.error.fieldRequired'));
addErrorMessage(errors, formItem, translate('common.error.fieldRequired'));
});
return errors;
},
Expand All @@ -55,6 +55,7 @@ function EnterSageIntacctCredentialsPage({route}: SageIntacctPrerequisitesPagePr
<ScreenWrapper
shouldEnableMaxHeight
testID={EnterSageIntacctCredentialsPage.displayName}
enableEdgeToEdgeBottomSafeAreaPadding
>
<HeaderWithBackButton
title={translate('workspace.intacct.sageIntacctSetup')}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ function SageIntacctPrerequisitesPage({route}: SageIntacctPrerequisitesPageProps
shouldEnablePickerAvoiding={false}
shouldShowOfflineIndicatorInWideScreen
testID={SageIntacctPrerequisitesPage.displayName}
enableEdgeToEdgeBottomSafeAreaPadding
>
<HeaderWithBackButton
title={translate('workspace.intacct.sageIntacctSetup')}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ function NetSuiteTokenInputForm({onNext, policyID}: SubStepWithPolicy) {
submitButtonText={translate('common.confirm')}
shouldValidateOnBlur
shouldValidateOnChange
addBottomSafeAreaPadding={false}
>
{formInputs.map((formInput, index) => (
<View
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ function RequireQuickBooksDesktopModal({route}: RequireQuickBooksDesktopModalPro
shouldEnablePickerAvoiding={false}
shouldShowOfflineIndicatorInWideScreen
testID={RequireQuickBooksDesktopModal.displayName}
enableEdgeToEdgeBottomSafeAreaPadding
>
<HeaderWithBackButton
title={translate('workspace.qbd.qbdSetup')}
Expand Down