diff --git a/src/components/comments/view/commentStyles.js b/src/components/comments/view/commentStyles.js index ba151708b..d5b8fb30c 100644 --- a/src/components/comments/view/commentStyles.js +++ b/src/components/comments/view/commentStyles.js @@ -1,8 +1,7 @@ import EStyleSheet from 'react-native-extended-stylesheet'; export default EStyleSheet.create({ - text: { - color: '$primaryBlack', - fontSize: 10, + list: { + marginBottom: 20, }, }); diff --git a/src/components/comments/view/commentsView.js b/src/components/comments/view/commentsView.js index ae83df48f..d37fb8a5d 100644 --- a/src/components/comments/view/commentsView.js +++ b/src/components/comments/view/commentsView.js @@ -9,7 +9,7 @@ import { injectIntl } from 'react-intl'; import { Comment } from '../../comment'; // Styles -// import styles from './commentStyles'; +import styles from './commentStyles'; class CommentsView extends PureComponent { /* Props @@ -61,6 +61,7 @@ class CommentsView extends PureComponent { return ( ( diff --git a/src/components/transaction/view/transactionView.js b/src/components/transaction/view/transactionView.js index 13b266354..28d38d08a 100644 --- a/src/components/transaction/view/transactionView.js +++ b/src/components/transaction/view/transactionView.js @@ -78,7 +78,7 @@ class TransactionView extends PureComponent { isBlackText iconName={transactionData.icon} iconType="MaterialIcons" - rightText={`${Math.round(value[0] * 1000) / 1000} ${value[1]}`} + rightText={transactionData.value.trim()} /> } > diff --git a/src/config/bugsnag.js b/src/config/bugsnag.js index 573707a03..48aeb8adf 100644 --- a/src/config/bugsnag.js +++ b/src/config/bugsnag.js @@ -1,5 +1,10 @@ -import { Client } from 'bugsnag-react-native'; +import { Client, Configuration } from 'bugsnag-react-native'; import Config from 'react-native-config'; -const client = new Client(Config.BUGSNAG_API_KEY); +const configuration = new Configuration(); +configuration.apiKey = Config.BUGSNAG_API_KEY; +configuration.consoleBreadcrumbsEnabled = true; +configuration.notifyReleaseStages = ['beta', 'production']; + +const client = new Client(configuration); export default client; diff --git a/src/screens/notification/container/notificationContainer.js b/src/screens/notification/container/notificationContainer.js index c66f5dc0e..67720a7c3 100644 --- a/src/screens/notification/container/notificationContainer.js +++ b/src/screens/notification/container/notificationContainer.js @@ -134,6 +134,7 @@ class NotificationContainer extends Component { intl.formatMessage({ id: 'alert.error' }), intl.formatMessage({ d: 'alert.unknow_error' }), ); + this.setState({ isNotificationRefreshing: false }); }); }; diff --git a/src/utils/wallet.js b/src/utils/wallet.js index d6e9b5ca9..641192abc 100644 --- a/src/utils/wallet.js +++ b/src/utils/wallet.js @@ -51,7 +51,7 @@ export const groomingTransactionData = (transaction, steemPerMVests, formatNumbe }).replace(',', '.'); result.value = `${sbdPayout > 0 ? `${sbdPayout} SBD` : ''} ${ - steemPayout > 0 ? `${steemPayout} steemPayout` : '' + steemPayout > 0 ? `${steemPayout} STEEM` : '' } ${vestingPayout > 0 ? `${vestingPayout} SP` : ''}`; result.details = author && permlink ? `@${author}/${permlink}` : null;