Skip to content

Commit

Permalink
Refactor: Fixed too broad check
Browse files Browse the repository at this point in the history
  • Loading branch information
revolter committed Feb 28, 2024
1 parent e7187d5 commit 1fd6283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/recipes/iq_puzzles/IQPuzzlesRecipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class IQPuzzlesRecipe implements Recipe {
const imageLinkRegex = new RegexFactory().imageMarkdownLinkRegex();

return arrayOfArrays.flatMap(array => {
if (array.length < 5) {
if (array.length < 3) {
return [];
}

Expand Down

0 comments on commit 1fd6283

Please sign in to comment.