File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ interface ButtonLinkProps {
1616 size ?: 'md' | 'lg' ;
1717 type ?: 'primary' | 'secondary' ;
1818 label ?: string ;
19- target ?: '_self' | ' _blank' ;
19+ target ?: '_self' | " _blank" ;
2020}
2121
2222function ButtonLink ( {
Original file line number Diff line number Diff line change 1212import { useRef , useLayoutEffect , Fragment } from 'react' ;
1313
1414import cn from 'classnames' ;
15- import { useRouter } from ' next/router' ;
15+ import { useRouter } from " next/router" ;
1616import { SidebarLink } from './SidebarLink' ;
1717import { useCollapse } from 'react-collapsed' ;
18- import usePendingRoute from ' hooks/usePendingRoute' ;
18+ import usePendingRoute from " hooks/usePendingRoute" ;
1919import type { RouteItem } from 'components/Layout/getRouteMeta' ;
2020import { siteConfig } from 'siteConfig' ;
2121
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import type {SVGProps} from 'react';
1212
1313export function Logo ( props : SVGProps < SVGSVGElement > ) {
1414 return (
15+ < >
1516 < svg
1617 width = "100%"
1718 height = "100%"
@@ -26,5 +27,6 @@ export function Logo(props: SVGProps<SVGSVGElement>) {
2627 < ellipse rx = "10" ry = "4.5" transform = "rotate(120)" />
2728 </ g >
2829 </ svg >
30+ </ >
2931 ) ;
3032}
You can’t perform that action at this time.
0 commit comments