This commit is contained in:
mgabdev 2020-05-11 23:23:22 -04:00
parent dcb0a2c74b
commit 5114e003e5
2 changed files with 1 additions and 3 deletions

View File

@ -58,8 +58,6 @@ class NotificationsPage extends PureComponent {
selectedFilter: PropTypes.string.isRequired, selectedFilter: PropTypes.string.isRequired,
} }
componentWill
UNSAFE_componentWillMount() { UNSAFE_componentWillMount() {
this.checkForQueryStringChange(this.context.router.route.location) this.checkForQueryStringChange(this.context.router.route.location)
} }

View File

@ -12,7 +12,7 @@ export const shortNumberFormat = (number) => {
return ( return (
<Fragment> <Fragment>
<FormattedNumber value={number / 1000} maximumFractionDigits={1} />k <FormattedNumber value={number / 1000} maximumFractionDigits={1} />
</Fragment> </Fragment>
) )
} }