Merge pull request #7317 from BlueWallet/name

FIX: Wrong name for ImportSpeed
This commit is contained in:
GLaDOS 2024-11-15 16:16:39 +00:00 committed by GitHub
commit 05847c434d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,7 +13,7 @@ import { AddWalletStackParamList } from '../../navigation/AddWalletStack';
type NavigationProp = NativeStackNavigationProp<AddWalletStackParamList, 'ImportSpeed'>;
const WalletsImportWallet = () => {
const ImportSpeed = () => {
const navigation = useNavigation<NavigationProp>();
const { colors } = useTheme();
const [loading, setLoading] = useState<boolean>(false);
@ -102,4 +102,4 @@ const WalletsImportWallet = () => {
);
};
export default WalletsImportWallet;
export default ImportSpeed;