diff --git a/Rock.Blocks/Engagement/SignUp/SignUpFinder.cs b/Rock.Blocks/Engagement/SignUp/SignUpFinder.cs index a589578c619..b205333adbd 100644 --- a/Rock.Blocks/Engagement/SignUp/SignUpFinder.cs +++ b/Rock.Blocks/Engagement/SignUp/SignUpFinder.cs @@ -602,7 +602,7 @@ private List GetNamedScheduleFilterItems( RockContext rockContext ) var rootScheduleCategoryId = CategoryCache.GetId( rootScheduleCategoryGuid.Value ); if ( rootScheduleCategoryId.HasValue ) { - query = query.Where( a => a.CategoryId.HasValue && a.CategoryId.Value == rootScheduleCategoryId.Value ); + query = query.Where( a => a.CategoryId.HasValue && a.CategoryId.Value == rootScheduleCategoryId.Value && a.IsActive ); } }