in lib/nimbusRecipe.ts [45:57]
function _branchInfoHasMicrosurvey(branchInfo: BranchInfo): boolean {
if (
branchInfo.id.toLowerCase().includes("survey") ||
branchInfo.slug.toLowerCase().includes("survey") ||
(branchInfo.description &&
branchInfo.description.toLowerCase().includes("survey")) ||
(branchInfo.userFacingName &&
branchInfo.userFacingName.toLowerCase().includes("survey"))
) {
return true;
}
return false;
}