Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NoQA] Fix Virtualised List Error #49487

Merged
merged 9 commits into from
Sep 20, 2024
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions src/pages/settings/Wallet/ChooseTransferAccountPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import * as Expensicons from '@components/Icon/Expensicons';
import MenuItem from '@components/MenuItem';
import ScreenWrapper from '@components/ScreenWrapper';
import ScrollView from '@components/ScrollView';

Check failure on line 11 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

'ScrollView' is defined but never used

Check failure on line 11 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

'ScrollView' is defined but never used
import SelectionList from '@components/SelectionList';
import RadioListItem from '@components/SelectionList/RadioListItem';
import useLocalize from '@hooks/useLocalize';
Expand Down Expand Up @@ -91,15 +91,15 @@
title={translate('chooseTransferAccountPage.chooseAccount')}
onBackButtonPress={() => Navigation.goBack(ROUTES.SETTINGS_WALLET_TRANSFER_BALANCE)}
/>
<ScrollView>
allgandalf marked this conversation as resolved.
Show resolved Hide resolved

Check failure on line 94 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Delete `········`

Check failure on line 94 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

Delete `········`
<SelectionList

Check failure on line 95 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Delete `····`

Check failure on line 95 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

Delete `····`
sections={[{data}]}

Check failure on line 96 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Replace `····················` with `················`

Check failure on line 96 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

Replace `····················` with `················`
ListItem={RadioListItem}

Check failure on line 97 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Delete `····`

Check failure on line 97 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

Delete `····`
onSelectRow={(value) => {

Check failure on line 98 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Delete `····`

Check failure on line 98 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

Delete `····`
const accountType = value?.bankAccount?.accountType;

Check failure on line 99 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Replace `························` with `····················`

Check failure on line 99 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

Replace `························` with `····················`
const accountData = value?.bankAccount?.accountData;

Check failure on line 100 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Delete `····`

Check failure on line 100 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

Delete `····`
selectAccountAndNavigateBack(accountType, accountData);

Check failure on line 101 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Replace `························` with `····················`

Check failure on line 101 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

Replace `························` with `····················`
}}

Check failure on line 102 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Replace `····················` with `················`

Check failure on line 102 in src/pages/settings/Wallet/ChooseTransferAccountPage.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

Replace `····················` with `················`
shouldSingleExecuteRowSelect
shouldUpdateFocusedIndex
initiallyFocusedOptionKey={walletTransfer?.selectedAccountID?.toString()}
Expand All @@ -113,7 +113,7 @@
}
icon={Expensicons.Plus}
/>
</ScrollView>

</ScreenWrapper>
);
}
Expand Down
Loading