@@ -610,7 +610,7 @@ function setProp(
610
610
if ( typeof value !== 'object' || ! ( '__html' in value ) ) {
611
611
throw new Error (
612
612
'`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. ' +
613
- 'Please visit https://reactjs.org /link/dangerously-set-inner-html ' +
613
+ 'Please visit https://react.dev /link/dangerously-set-inner-html ' +
614
614
'for more information.' ,
615
615
) ;
616
616
}
@@ -938,7 +938,7 @@ function setPropOnCustomElement(
938
938
if ( typeof value !== 'object' || ! ( '__html' in value ) ) {
939
939
throw new Error (
940
940
'`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. ' +
941
- 'Please visit https://reactjs.org /link/dangerously-set-inner-html ' +
941
+ 'Please visit https://react.dev /link/dangerously-set-inner-html ' +
942
942
'for more information.' ,
943
943
) ;
944
944
}
@@ -1502,7 +1502,7 @@ export function updateProperties(
1502
1502
'This is likely caused by the value changing from undefined to ' +
1503
1503
'a defined value, which should not happen. ' +
1504
1504
'Decide between using a controlled or uncontrolled input ' +
1505
- 'element for the lifetime of the component. More info: https://reactjs.org /link/controlled-components' ,
1505
+ 'element for the lifetime of the component. More info: https://react.dev /link/controlled-components' ,
1506
1506
) ;
1507
1507
didWarnUncontrolledToControlled = true ;
1508
1508
}
@@ -1516,7 +1516,7 @@ export function updateProperties(
1516
1516
'This is likely caused by the value changing from a defined to ' +
1517
1517
'undefined, which should not happen. ' +
1518
1518
'Decide between using a controlled or uncontrolled input ' +
1519
- 'element for the lifetime of the component. More info: https://reactjs.org /link/controlled-components' ,
1519
+ 'element for the lifetime of the component. More info: https://react.dev /link/controlled-components' ,
1520
1520
) ;
1521
1521
didWarnControlledToUncontrolled = true ;
1522
1522
}
0 commit comments