Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: correct release #2326

Merged
merged 2 commits into from
Jan 4, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
ci: correct release
  • Loading branch information
cutterbl committed Jan 4, 2023
commit a31c1befff5d7bdb538e8e845aae44f8143fc25d
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
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