From 8f3097d3d8be3c8d453a0847d0d3af14ca1ca3bf Mon Sep 17 00:00:00 2001 From: abefernan <44572727+abefernan@users.noreply.github.com> Date: Fri, 5 Apr 2024 22:28:19 +0200 Subject: [PATCH] Simplify threshold --- components/dataViews/MultisigView/index.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) 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() { ); })} -
- Transactions need to be signed by {multisigInfo.threshold} out of the{" "} - {multisigInfo.members.length} members. -
+{multisigInfo.threshold} signatures needed to send a transaction.