File tree Expand file tree Collapse file tree
packages/react-sample/src/pages/Callback Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Keep concurrency 1 to avoid lint-staged issue
22# Which may cause ALL your work LOST WITHOUT STASH
3- FORCE_COLOR=1 pnpm -r --workspace-concurrency 1 --filter "[HEAD]" precommit
3+ FORCE_COLOR=1 pnpm -r --workspace-concurrency 1 --filter=!root --filter "[HEAD]" precommit
Original file line number Diff line number Diff line change 4747 "devalue@<5.6.2" : " ^5.6.2" ,
4848 "@angular/core@<20.3.16" : " ^20.3.16" ,
4949 "@remix-run/router@<1.23.2" : " ^1.23.2" ,
50- "@parcel/reporter-dev-server@<=2.16.3" : " ^2.16.4"
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+ "@isaacs/brace-expansion@<=5.0.0" : " >=5.0.1"
5159 },
5260 "peerDependencyRules" : {
5361 "allowedVersions" : {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { useNavigate } from 'react-router-dom';
44const Callback = ( ) => {
55 const navigate = useNavigate ( ) ;
66 const { isLoading } = useHandleSignInCallback ( ( ) => {
7- navigate ( '/' ) ;
7+ void navigate ( '/' ) ;
88 } ) ;
99
1010 return isLoading ? < p > Redirecting...</ p > : null ;
You can’t perform that action at this time.
0 commit comments