Update importSpeed.js

This commit is contained in:
Marcos Rodriguez Velez 2024-05-08 14:20:37 -04:00
parent d8378c903c
commit 71308fa65b
No known key found for this signature in database
GPG key ID: 6030B2F48CCE86D7

View file

@ -2,9 +2,7 @@ import React, { useContext, useState } from 'react';
import { View, StyleSheet, TextInput, ActivityIndicator } from 'react-native';
import { useNavigation } from '@react-navigation/native';
import { HDSegwitBech32Wallet, WatchOnlyWallet } from '../../class';
import loc from '../../loc';
import { BlueFormLabel, BlueFormMultiInput, BlueSpacing20 } from '../../BlueComponents';
import navigationStyle from '../../components/navigationStyle';
import { BlueStorageContext } from '../../blue_modules/storage-context';
import { useTheme } from '../../components/themes';
import Button from '../../components/Button';
@ -92,10 +90,4 @@ const WalletsImportWallet = () => {
);
};
WalletsImportWallet.navigationOptions = navigationStyle({}, opts => ({
...opts,
statusBarStyle: 'light',
title: loc.wallets.import_title,
}));
export default WalletsImportWallet;