Skip to content

Commit

Permalink
fix(): do not capitalize recovery phrase words (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tbaut authored and lexfro committed Dec 12, 2018
1 parent c6e10c1 commit 6e4d7ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AccountSeed.js
Expand Up @@ -17,7 +17,6 @@
'use strict';

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { Animated, Text, View, StyleSheet } from 'react-native';
import TouchableItem from './TouchableItem';
import TextInput from './TextInput';
Expand Down Expand Up @@ -188,6 +187,7 @@ export default class AccountSeed extends Component {
<TextInput
style={[styles.input, invalidStyles]}
multiline
autoCapitalize="none"
onBlur={this.keyboardDidHide}
onSelectionChange={this.handleCursorPosition}
{...this.props}
Expand Down

0 comments on commit 6e4d7ca

Please sign in to comment.