This commit is contained in:
nmemmert
2026-06-18 13:59:30 -04:00
parent b77aba0167
commit 83c3f554aa
+1 -1
View File
@@ -1708,7 +1708,7 @@ export function ColossiansStudySectionPage({ content }: Props) {
function checkAndShowCelebration(newIds: string[], wasAlreadyComplete: boolean) { function checkAndShowCelebration(newIds: string[], wasAlreadyComplete: boolean) {
if (wasAlreadyComplete) return if (wasAlreadyComplete) return
if (releasedSectionCount > 0 && newIds.length >= releasedSectionCount) { if (sections.length > 0 && newIds.length >= sections.length) {
setShowCelebration(true) setShowCelebration(true)
} }
} }