File tree 2 files changed +5
-7
lines changed
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) {
10
10
11
11
if ( isInternalLink ) {
12
12
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 >
18
16
)
19
17
}
20
18
21
19
return (
22
- < ChakraLink isExternal { ...rest } ref = { ref } >
20
+ < ChakraLink isExternal { ...rest } as = { NextLink } ref = { ref } >
23
21
{ rest . children }
24
22
{ useExternalIcon && < ExternalLinkIcon mx = '2px' /> }
25
23
</ ChakraLink >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export const Sponsors = [
4
4
{
5
5
name : 'CZI' ,
6
6
logo : '/Chan_Zuckerberg_Initiative.svg' ,
7
- url : 'https://chanzuckerberg.com// ' ,
7
+ url : 'https://chanzuckerberg.com/' ,
8
8
} ,
9
9
{ name : 'NVIDIA' , logo : '/Nvidia_logo.svg' , url : 'https://www.nvidia.com/' } ,
10
10
]
You can’t perform that action at this time.
0 commit comments