File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ const HeaderLogo: React.FC<HeaderLogoProps> = ({
22
22
if ( ! custom ) {
23
23
return (
24
24
< HeaderLogoBlock >
25
- < Link to = "/" >
25
+ < a href = "/" >
26
26
< Logo data-testid = "velog-logo" className = "velog-logo" />
27
- </ Link >
27
+ </ a >
28
28
</ HeaderLogoBlock >
29
29
) ;
30
30
}
@@ -33,7 +33,7 @@ const HeaderLogo: React.FC<HeaderLogoProps> = ({
33
33
const velogPath = `/@${ username } ` ;
34
34
return (
35
35
< HeaderLogoBlock >
36
- < VelogLogoLink to = "/" >
36
+ < VelogLogoLink href = "/" >
37
37
< VelogIcon />
38
38
</ VelogLogoLink >
39
39
< Link to = { velogPath } className = "user-logo" >
@@ -74,7 +74,7 @@ const HeaderLogoBlock = styled.div`
74
74
}
75
75
` ;
76
76
77
- const VelogLogoLink = styled ( Link ) `
77
+ const VelogLogoLink = styled . a `
78
78
color: inherit;
79
79
80
80
svg {
You can’t perform that action at this time.
0 commit comments