diff --git a/components/dataViews/MultisigView/index.tsx b/components/dataViews/MultisigView/index.tsx index 11df17b..9f8703d 100644 --- a/components/dataViews/MultisigView/index.tsx +++ b/components/dataViews/MultisigView/index.tsx @@ -1,5 +1,4 @@ import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"; -import { Badge } from "@/components/ui/badge"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { isChainInfoFilled } from "@/context/ChainsContext/helpers"; import { explorerLinkAccount } from "@/lib/displayHelpers"; @@ -136,15 +135,9 @@ export default function MultisigView() { ); })} -
- Threshold = {multisigInfo.threshold} -
-

- Transactions need to be signed by {multisigInfo.threshold} out of the{" "} - {multisigInfo.members.length} members. -

+

{multisigInfo.threshold} signatures needed to send a transaction.

) : null}