updated a bit

This commit is contained in:
u-e 2018-12-17 15:58:01 +03:00
parent f4140e9cda
commit eebdd8f8c3
3 changed files with 1 additions and 2 deletions

View File

@ -88,6 +88,7 @@ class CommentsView extends Component {
avatarSize={avatarSize || 16}
author={item.author}
permlink={item.permlink}
commentCount={item.children}
/>
)}
</View>

View File

@ -35,7 +35,6 @@ class PostButtonsForAndroid extends Component {
}
componentWillReceiveProps(nextProps) {
console.log('nextProps :', nextProps);
// For closing sub buttons
const { routes, isCollapsePostButtonOpen } = this.props;
const nextRouteName = nextProps.routes[0].routes[nextProps.routes[0].routes.length - 1].routeName;

View File

@ -7,7 +7,6 @@ const readFromClipboard = async () => {
const writeToClipboard = async (text) => {
await Clipboard.setString(text);
console.log(text);
};
export { writeToClipboard, readFromClipboard };