@@ -610,7 +610,7 @@ function setProp(
610610 if ( typeof value !== 'object' || ! ( '__html' in value ) ) {
611611 throw new Error (
612612 '`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 ' +
614614 'for more information.' ,
615615 ) ;
616616 }
@@ -938,7 +938,7 @@ function setPropOnCustomElement(
938938 if ( typeof value !== 'object' || ! ( '__html' in value ) ) {
939939 throw new Error (
940940 '`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 ' +
942942 'for more information.' ,
943943 ) ;
944944 }
@@ -1502,7 +1502,7 @@ export function updateProperties(
15021502 'This is likely caused by the value changing from undefined to ' +
15031503 'a defined value, which should not happen. ' +
15041504 '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' ,
15061506 ) ;
15071507 didWarnUncontrolledToControlled = true ;
15081508 }
@@ -1516,7 +1516,7 @@ export function updateProperties(
15161516 'This is likely caused by the value changing from a defined to ' +
15171517 'undefined, which should not happen. ' +
15181518 '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' ,
15201520 ) ;
15211521 didWarnControlledToUncontrolled = true ;
15221522 }
0 commit comments