Skip to content

Commit

Permalink
ci: correct release (#2326)
Browse files Browse the repository at this point in the history
  • Loading branch information
cutterbl authored Jan 4, 2023
1 parent 47950a7 commit ebd9547
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16.13.2'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16.13.2'

Expand Down
1 change: 1 addition & 0 deletions src/Popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ function Pop({
})
popperRef.current.style.top = `${topOffset}px`
popperRef.current.style.left = `${leftOffset}px`
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [offset.x, offset.y, target])

const { width } = position
Expand Down

0 comments on commit ebd9547

Please sign in to comment.