diff --git a/app/presenters/run_availability_presenter.rb b/app/presenters/run_availability_presenter.rb index a1d9ece502..2c7a96441c 100644 --- a/app/presenters/run_availability_presenter.rb +++ b/app/presenters/run_availability_presenter.rb @@ -9,7 +9,11 @@ def initialize(bucket, signup_count_presenter) end def confirmed_count - signup_count_presenter.signup_count(bucket_key: bucket.key, state: "confirmed", counted: true) + if bucket.counted? + signup_count_presenter.signup_count(bucket_key: bucket.key, state: "confirmed", counted: true) + else + signup_count_presenter.signup_count(bucket_key: bucket.key, state: "confirmed") + end end def available_slots