Skip to content

Commit

Permalink
fix(deps): update react monorepo to v19 (major) (#294)
Browse files Browse the repository at this point in the history
* fix(deps): update react monorepo to v19

* pnpm dedupe

* fix type issue

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: William Boman <[email protected]>
  • Loading branch information
renovate[bot] and williamboman authored Dec 20, 2024
1 parent 044d9fa commit 762c5cd
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 91 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"dependencies": {
"adm-zip": "^0.5.10",
"next": "15.1.0",
"react": "18.3.1",
"react-dom": "18.3.1"
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.1",
"@types/adm-zip": "^0.5.0",
"@types/jest": "^29.5.1",
"@types/node": "22.10.2",
"@types/react": "18.3.18",
"@types/react": "19.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "9.17.0",
Expand Down
2 changes: 1 addition & 1 deletion pages/registry/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type Props = {
timestamp: string
}

const useVimSearchKeybind = (inputRef: RefObject<HTMLInputElement>) => {
const useVimSearchKeybind = (inputRef: RefObject<HTMLInputElement | null>) => {
useEffect(() => {
const handleKeyDown = (event: KeyboardEvent) => {
if (event.key === "/") {
Expand Down
Loading

0 comments on commit 762c5cd

Please sign in to comment.