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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased (develop)

- changed: Move `importKeyOptions` into `CreateWalletImportScene`
- removed: Remove `CreateWalletImportOptionsScene`

## 4.46.0 (staging)

- added: Xgram swap exchange plugin support
Expand Down
6 changes: 1 addition & 5 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,6 @@ export default [
'src/components/scenes/CreateWalletAccountSelectScene.tsx',
'src/components/scenes/CreateWalletAccountSetupScene.tsx',

'src/components/scenes/CreateWalletImportOptionsScene.tsx',
'src/components/scenes/CreateWalletImportScene.tsx',
Comment thread
cursor[bot] marked this conversation as resolved.

'src/components/scenes/CurrencyNotificationScene.tsx',
'src/components/scenes/DefaultFiatSettingScene.tsx',
'src/components/scenes/DuressModeHowToScene.tsx',
Expand Down Expand Up @@ -461,8 +458,7 @@ export default [
'src/plugins/stake-plugins/thorchainSavers/tcSaversPlugin.tsx',
'src/plugins/stake-plugins/thorchainSavers/tcSaversPluginSegwit.tsx',
'src/plugins/stake-plugins/uniswapV2/Ecosystem.ts',
'src/plugins/stake-plugins/uniswapV2/policies/cemeteryPolicy.ts',
'src/plugins/stake-plugins/uniswapV2/policies/masonryPolicy.ts',

'src/plugins/stake-plugins/uniswapV2/policies/VelodromeV2StakePolicy.ts',
'src/plugins/stake-plugins/util/accumulator.ts',
'src/plugins/stake-plugins/util/biggystringplus.ts',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,9 @@ exports[`CreateWalletImportScene should render with loading props 1`] = `
}
/>
</View>
<RCTScrollView>
<RCTScrollView
keyboardShouldPersistTaps="handled"
>
<View>
<View
style={
Expand Down Expand Up @@ -892,7 +894,7 @@ exports[`CreateWalletImportScene should render with loading props 1`] = `
{
"busy": undefined,
"checked": undefined,
"disabled": false,
"disabled": true,
"expanded": undefined,
"selected": undefined,
}
Expand All @@ -907,7 +909,7 @@ exports[`CreateWalletImportScene should render with loading props 1`] = `
}
accessible={true}
collapsable={false}
focusable={true}
focusable={false}
hitSlop={
{
"bottom": 11,
Expand All @@ -929,7 +931,7 @@ exports[`CreateWalletImportScene should render with loading props 1`] = `
"borderRadius": 34,
"height": 67,
"justifyContent": "center",
"opacity": 1,
"opacity": 0.3,
"overflow": "visible",
"paddingHorizontal": 34,
"paddingVertical": 0,
Expand Down
11 changes: 0 additions & 11 deletions src/components/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ import { CreateWalletAccountSelectScene as CreateWalletAccountSelectSceneCompone
import { CreateWalletAccountSetupScene as CreateWalletAccountSetupSceneComponent } from './scenes/CreateWalletAccountSetupScene'
import { CreateWalletCompletionScene as CreateWalletCompletionSceneComponent } from './scenes/CreateWalletCompletionScene'
import { CreateWalletEditNameScene as CreateWalletSelectFiatSceneComponent } from './scenes/CreateWalletEditNameScene'
import { CreateWalletImportOptionsScene as CreateWalletImportOptionsSceneComponent } from './scenes/CreateWalletImportOptionsScene'
import { CreateWalletImportScene as CreateWalletImportSceneComponent } from './scenes/CreateWalletImportScene'
import { CreateWalletSelectCryptoScene as CreateWalletSelectCryptoSceneComponent } from './scenes/CreateWalletSelectCryptoScene'
import { CurrencyNotificationScene as CurrencyNotificationSceneComponent } from './scenes/CurrencyNotificationScene'
Expand Down Expand Up @@ -198,9 +197,6 @@ const CreateWalletAccountSetupScene = ifLoggedIn(
const CreateWalletCompletionScene = ifLoggedIn(
CreateWalletCompletionSceneComponent
)
const CreateWalletImportOptionsScene = ifLoggedIn(
CreateWalletImportOptionsSceneComponent
)
const CreateWalletImportScene = ifLoggedIn(CreateWalletImportSceneComponent)
const CreateWalletSelectCryptoScene = ifLoggedIn(
CreateWalletSelectCryptoSceneComponent
Expand Down Expand Up @@ -764,13 +760,6 @@ const EdgeAppStack: React.FC = () => {
headerRight: () => null
}}
/>
<AppStack.Screen
name="createWalletImportOptions"
component={CreateWalletImportOptionsScene}
options={{
headerRight: () => null
}}
/>
<AppStack.Screen
name="createWalletSelectCrypto"
component={CreateWalletSelectCryptoScene}
Expand Down
297 changes: 0 additions & 297 deletions src/components/scenes/CreateWalletImportOptionsScene.tsx

This file was deleted.

Loading
Loading