Skip to content

Commit ab739ba

Browse files
authored
chore: audit fix (#1081)
* chore: audit fix clean up deps overrides and run audit fix * fix(react-sample): fix lint error fix lint error
1 parent e80efb4 commit ab739ba

File tree

3 files changed

+238
-252
lines changed

3 files changed

+238
-252
lines changed

package.json

Lines changed: 23 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -37,37 +37,34 @@
3737
"cookie@<0.7.0": "^0.7.0",
3838
"path-to-regexp@<0.1.12": "^0.1.12",
3939
"on-headers@<1.1.0": "^1.1.0",
40-
"tmp@<=0.2.3": "^0.2.4",
40+
"tmp@<0.2.4": "^0.2.4",
4141
"send@<0.19.0": "^0.19.0",
4242
"valibot@>=0.31.0 <1.2.0": "^1.2.0",
4343
"@angular/common@<19.2.16": "^19.2.16",
4444
"@react-router/node@<7.9.5": "^7.9.5",
45-
"qs@<6.14.1": "^6.14.1",
46-
"tar@<=7.5.3": "^7.5.4",
47-
"devalue@<5.6.2": "^5.6.2",
48-
"@angular/core@<20.3.16": "^20.3.16",
45+
"qs@<6.14.2": "^6.14.2",
46+
"tar@<7.5.8": "^7.5.8",
47+
"devalue@<5.6.3": "^5.6.3",
48+
"@angular/core@<20.3.17": "^20.3.17",
4949
"@remix-run/router@<1.23.2": "^1.23.2",
50-
"@parcel/reporter-dev-server@<=2.16.3": "^2.16.4",
51-
"@remix-run/server-runtime@<=2.17.2": ">=2.17.3",
52-
"react-router@>=6.0.0 <6.30.2": ">=6.30.2",
53-
"lodash@>=4.0.0 <=4.17.22": ">=4.17.23",
54-
"next@>=10.0.0 <15.5.10": ">=15.5.10",
55-
"next@>=15.5.1-canary.0 <15.5.10": ">=15.5.10",
56-
"tar@<7.5.7": ">=7.5.7",
57-
"diff@>=6.0.0 <8.0.3": ">=8.0.3",
58-
"qs@>=6.7.0 <=6.14.1": ">=6.14.2",
59-
"@sveltejs/kit@>=2.49.0 <=2.52.1": ">=2.52.2",
60-
"devalue@<=5.6.2": ">=5.6.3",
61-
"tar@<7.5.8": ">=7.5.8",
62-
"svelte@<=5.51.4": ">=5.51.5",
63-
"ajv@<6.14.0": "6.14.0",
64-
"ajv@>=7.0.0-alpha.0 <8.18.0": "8.18.0",
65-
"minimatch@<3.1.3": "3.1.3",
66-
"minimatch@>=5.0.0 <5.1.7": "5.1.7",
67-
"minimatch@>=9.0.0 <9.0.6": "9.0.6",
68-
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
69-
"nanotar@<=0.2.0": ">=0.3.0",
70-
"@isaacs/brace-expansion@<=5.0.0": ">=5.0.1"
50+
"@parcel/reporter-dev-server@<2.16.4": "^2.16.4",
51+
"@remix-run/server-runtime@<2.17.3": "^2.17.3",
52+
"react-router@>=6.0.0 <6.30.2": "^6.30.2",
53+
"lodash@>=4.0.0 <4.17.23": "^4.17.23",
54+
"next@>=10.0.0 <15.5.10": "^15.5.10",
55+
"next@>=15.5.1-canary.0 <15.5.10": "^15.5.10",
56+
"diff@>=6.0.0 <8.0.3": "^8.0.3",
57+
"@sveltejs/kit@>=2.49.0 <2.53.3": "^2.53.3",
58+
"svelte@<5.51.5": "^5.51.5",
59+
"ajv@<6.14.0": "^6.14.0",
60+
"ajv@>=7.0.0-alpha.0 <8.18.0": "^8.18.0",
61+
"minimatch@<3.1.4": "^3.1.4",
62+
"minimatch@>=5.0.0 <5.1.8": "^5.1.8",
63+
"minimatch@>=9.0.0 <9.0.7": "^9.0.7",
64+
"rollup@>=4.0.0 <4.59.0": "^4.59.0",
65+
"nanotar@<0.2.1": "^0.3.0",
66+
"@isaacs/brace-expansion@<5.0.1": "^5.0.1",
67+
"serialize-javascript@<7.0.3": "^7.0.3"
7168
},
7269
"peerDependencyRules": {
7370
"allowedVersions": {

packages/react-sample/src/pages/Callback/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useNavigate } from 'react-router-dom';
44
const Callback = () => {
55
const navigate = useNavigate();
66
const { isLoading } = useHandleSignInCallback(() => {
7-
void navigate('/');
7+
navigate('/');
88
});
99

1010
return isLoading ? <p>Redirecting...</p> : null;

0 commit comments

Comments
 (0)