diff --git a/app-ios/Sources/ContributorFeature/ContributorsCountItem.swift b/app-ios/Sources/ContributorFeature/ContributorsCountItem.swift index 5d7948b23..8d8ba8043 100644 --- a/app-ios/Sources/ContributorFeature/ContributorsCountItem.swift +++ b/app-ios/Sources/ContributorFeature/ContributorsCountItem.swift @@ -34,6 +34,8 @@ struct ContributorsCountItem: View { } func animate() { + if tracker >= totalContributor { return } + let interval = duration / Double(totalContributor) Timer.scheduledTimer(withTimeInterval: interval, repeats: true) { time in tracker += 1