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) } }