Fixed two bugs that were introduced when we changed the conference registration process to accommodate virtual conferences.

This commit is contained in:
2025-01-31 00:35:05 -05:00
parent 15ecc409b1
commit 52c3d0c7a0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ module RegistrationSteps
:review
]
available = all_southpole_steps.select { |step| send("#{step}_available?", registration) }
else+ available = RegistrationSteps.all_registration_steps.select { |step| send("#{step}_available?", registration) }
else available = RegistrationSteps.all_registration_steps.select { |step| send("#{step}_available?", registration) }
end
return available
end