in app/fetchData.ts [106:119]
export async function getMsgRolloutCollection(
recipeCollection: NimbusRecipeCollection,
): Promise<NimbusRecipeCollection> {
const msgRolloutRecipeCollection = new NimbusRecipeCollection();
msgRolloutRecipeCollection.recipes = recipeCollection.recipes
.filter((recipe) => recipe.usesMessagingFeatures() && !recipe.isExpRecipe())
.sort(compareDatesFn);
console.log(
"msgRolloutRecipeCollection.length = ",
msgRolloutRecipeCollection.recipes.length,
);
return msgRolloutRecipeCollection;
}