From 44bd4c8504d42721d1ab3d53b3d01db426df8fb1 Mon Sep 17 00:00:00 2001 From: John Costa Date: Sat, 15 Nov 2025 15:53:06 +0000 Subject: [PATCH] fix: signature count --- packages/frontend/src/pages/Testimonies.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/pages/Testimonies.tsx b/packages/frontend/src/pages/Testimonies.tsx index b0debec..389fb20 100644 --- a/packages/frontend/src/pages/Testimonies.tsx +++ b/packages/frontend/src/pages/Testimonies.tsx @@ -14,7 +14,7 @@ const Testimonies = () => { name: s.name ?? "Anonymous", })); - const totalCount = signatures.length; + const totalCount = allSignatures.length; const navigate = useNavigate();