diff --git a/components/dataViews/ThresholdInfo.tsx b/components/dataViews/ThresholdInfo.tsx index 0271e0c..46d92b7 100644 --- a/components/dataViews/ThresholdInfo.tsx +++ b/components/dataViews/ThresholdInfo.tsx @@ -17,7 +17,8 @@ const ThresholdInfo = ({ signatures, pubkey }: Props) => { setUrlToCopy(urlWithoutQuery); }, []); - const remainingSignatures = Number(pubkey.value.threshold) - signatures.length; + const signaturesDiff = Number(pubkey.value.threshold) - signatures.length; + const remainingSignatures = signaturesDiff > 0 ? signaturesDiff : 0; if (!remainingSignatures) return null; return (