mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 21:01:31 +03:00
boost screen key issue fix
This commit is contained in:
parent
405ccc93fb
commit
c09675043b
@ -20,7 +20,7 @@ const BoostPlaceHolder = () => {
|
||||
{({ isDarkTheme }) => {
|
||||
const color = isDarkTheme ? '#2e3d51' : '#f5f5f5';
|
||||
return (
|
||||
<View style={styles.container} key={i.toString()}>
|
||||
<View style={styles.container} key={'key-' + i.toString()}>
|
||||
<View style={styles.line}>
|
||||
<Placeholder.Box color={color} width={90} height={40} animate="fade" />
|
||||
<View style={styles.paragraphWrapper}>
|
||||
|
@ -19,8 +19,9 @@ const ITEM_SKUS = Platform.select({
|
||||
|
||||
const _getTitle = title => {
|
||||
let _title = title.toUpperCase();
|
||||
|
||||
_title = _title.replace(/[^0-9]+/g, '') + ' ESTM';
|
||||
if (_title !== 'FREE ESTM') {
|
||||
_title = _title.replace(/[^0-9]+/g, '') + ' ESTM';
|
||||
}
|
||||
|
||||
return _title;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user