File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -10,16 +10,14 @@ export const Link = React.forwardRef(function CustomLink(props, ref) {
1010
1111 if ( isInternalLink ) {
1212 return (
13- < NextLink href = { href } passHref >
14- < ChakraLink ref = { ref } { ...rest } >
15- { rest . children }
16- </ ChakraLink >
17- </ NextLink >
13+ < ChakraLink as = { NextLink } ref = { ref } { ...rest } >
14+ { rest . children }
15+ </ ChakraLink >
1816 )
1917 }
2018
2119 return (
22- < ChakraLink isExternal { ...rest } ref = { ref } >
20+ < ChakraLink isExternal { ...rest } as = { NextLink } ref = { ref } >
2321 { rest . children }
2422 { useExternalIcon && < ExternalLinkIcon mx = '2px' /> }
2523 </ ChakraLink >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export const Sponsors = [
44 {
55 name : 'CZI' ,
66 logo : '/Chan_Zuckerberg_Initiative.svg' ,
7- url : 'https://chanzuckerberg.com// ' ,
7+ url : 'https://chanzuckerberg.com/' ,
88 } ,
99 { name : 'NVIDIA' , logo : '/Nvidia_logo.svg' , url : 'https://www.nvidia.com/' } ,
1010]
You can’t perform that action at this time.
0 commit comments