From 52ba9cf2774a42150d2c8d078ab7af68883a57ab Mon Sep 17 00:00:00 2001 From: jtmst Date: Sat, 11 May 2024 18:41:04 -0400 Subject: [PATCH] typo --- src/app/components/ShowAllToggle.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/ShowAllToggle.tsx b/src/app/components/ShowAllToggle.tsx index 09bd626..d818adc 100644 --- a/src/app/components/ShowAllToggle.tsx +++ b/src/app/components/ShowAllToggle.tsx @@ -11,7 +11,7 @@ const ShowAllToggle = () => { ) as NodeListOf; setShowAll(!showAll); topics.forEach((topic, index) => { - if (index > 9) { + if (index > 8) { if (topic.style.display === 'none' || !topic.style.display) { topic.style.display = 'block'; } else {