diff --git a/src/components/notification.jsx b/src/components/notification.jsx index 5392eae6..6467eb68 100644 --- a/src/components/notification.jsx +++ b/src/components/notification.jsx @@ -1,3 +1,4 @@ +import shortenNumber from '../utils/shorten-number'; import states from '../utils/states'; import store from '../utils/store'; @@ -169,7 +170,10 @@ function Notification({ notification, instance, reload, isStatic }) { {_accounts?.length > 1 ? ( <> - {_accounts.length} people + + {shortenNumber(_accounts.length)} + {' '} + people {' '} ) : ( @@ -203,7 +207,7 @@ function Notification({ notification, instance, reload, isStatic }) { )} {_accounts?.length > 1 && (

- {_accounts.map((account, i) => ( + {_accounts.slice(0, 50).map((account, i) => ( <>