mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-23 05:13:04 +03:00
rm unnecessary string addition
This commit is contained in:
parent
df97465b17
commit
6481407629
@ -20,7 +20,7 @@ const BoostPlaceHolder = () => {
|
|||||||
{({ isDarkTheme }) => {
|
{({ isDarkTheme }) => {
|
||||||
const color = isDarkTheme ? '#2e3d51' : '#f5f5f5';
|
const color = isDarkTheme ? '#2e3d51' : '#f5f5f5';
|
||||||
return (
|
return (
|
||||||
<View style={styles.container} key={"ind" + i.toString()}>
|
<View style={styles.container} key={i.toString()}>
|
||||||
<View style={styles.line}>
|
<View style={styles.line}>
|
||||||
<Placeholder.Box color={color} width={90} height={40} animate="fade" />
|
<Placeholder.Box color={color} width={90} height={40} animate="fade" />
|
||||||
<View style={styles.paragraphWrapper}>
|
<View style={styles.paragraphWrapper}>
|
||||||
|
Loading…
Reference in New Issue
Block a user