From 83c3f554aab49d04b5b4ae79ddb76f75c4bdcfa6 Mon Sep 17 00:00:00 2001 From: nmemmert Date: Thu, 18 Jun 2026 13:59:30 -0400 Subject: [PATCH] cert fix --- src/colossiansStudy.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/colossiansStudy.tsx b/src/colossiansStudy.tsx index f395988..b07f702 100644 --- a/src/colossiansStudy.tsx +++ b/src/colossiansStudy.tsx @@ -1708,7 +1708,7 @@ export function ColossiansStudySectionPage({ content }: Props) { function checkAndShowCelebration(newIds: string[], wasAlreadyComplete: boolean) { if (wasAlreadyComplete) return - if (releasedSectionCount > 0 && newIds.length >= releasedSectionCount) { + if (sections.length > 0 && newIds.length >= sections.length) { setShowCelebration(true) } }