Skip to content

Commit

Permalink
fix: hasMatch check
Browse files Browse the repository at this point in the history
  • Loading branch information
headwindz committed Oct 19, 2022
1 parent 4f27806 commit 0b7e0a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "figx",
"version": "0.1.2",
"version": "0.1.3",
"description": "A comprehensive and reliable figma utilities library",
"keywords": [
"utilities",
Expand Down
2 changes: 1 addition & 1 deletion src/_internal/hasMatch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function hasMatch(pred: Pred, matchedResult: boolean) {
return matchedResult;
}
node = node.parent as SceneNode;
} while (node !== null && !isPageNode(node));
} while (node != null && !isPageNode(node));
return !matchedResult;
};
}
Expand Down

1 comment on commit 0b7e0a9

@vercel
Copy link

@vercel vercel bot commented on 0b7e0a9 Oct 19, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

figx – ./

figx.vercel.app
figx-git-main-n0rush.vercel.app
figx-n0rush.vercel.app
figx.cool

Please sign in to comment.