Skip to content

Commit

Permalink
🔧 [CHORE]: Update Next & react version to latest to ensure to be up t…
Browse files Browse the repository at this point in the history
…o date with security fixes (#7777)
  • Loading branch information
mcayuelas-ledger authored Sep 9, 2024
1 parent 3eafc83 commit 2f7277a
Show file tree
Hide file tree
Showing 4 changed files with 303 additions and 65 deletions.
5 changes: 5 additions & 0 deletions .changeset/fast-feet-reflect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ledgerhq/web-tools": minor
---

Update Next & react version to latest to ensure to be up to date with security fixes
10 changes: 5 additions & 5 deletions apps/web-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
"eslint-config-next": "13.5.6",
"invariant": "^2.2.4",
"lodash": "^4.17.21",
"next": "14.2.3",
"next": "14.2.8",
"prop-types": "^15.8.1",
"qrcode": "^1.4.4",
"re-resizable": "^6.9.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "14",
"react-inspector": "^4.0.1",
"react-select": "^5.7.4",
Expand All @@ -65,8 +65,8 @@
"@types/lodash": "^4.14.198",
"@types/node": "20.8.10",
"@types/qrcode": "1",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.13",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-inspector": "^4.0.2",
"@types/react-table": "^7.7.15",
"@types/semver": "^7.3.9"
Expand Down
4 changes: 2 additions & 2 deletions apps/web-tools/repl/components/Form.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import React from "react";
import FormField from "./FormField";
import { Form } from "../helpers/commands";
import { Form as FormType } from "../helpers/commands";

const Form = ({
form,
dependencies,
value,
onChange,
}: {
form: Form;
form: FormType;
dependencies: Object;
value: any;
onChange: (v: any) => void;
Expand Down
Loading

0 comments on commit 2f7277a

Please sign in to comment.