Skip to content

Commit 1fd6283

Browse files
committed
Refactor: Fixed too broad check
1 parent e7187d5 commit 1fd6283

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/recipes/iq_puzzles/IQPuzzlesRecipe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export class IQPuzzlesRecipe implements Recipe {
9898
const imageLinkRegex = new RegexFactory().imageMarkdownLinkRegex();
9999

100100
return arrayOfArrays.flatMap(array => {
101-
if (array.length < 5) {
101+
if (array.length < 3) {
102102
return [];
103103
}
104104

0 commit comments

Comments
 (0)