Skip to content

Commit 4ae3bf0

Browse files
edit ui
1 parent 366b5fb commit 4ae3bf0

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/components/ButtonLink.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

2222
function ButtonLink({

src/components/Layout/Sidebar/SidebarRouteTree.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
import {useRef, useLayoutEffect, Fragment} from 'react';
1313

1414
import cn from 'classnames';
15-
import {useRouter} from 'next/router';
15+
import {useRouter} from "next/router";
1616
import {SidebarLink} from './SidebarLink';
1717
import {useCollapse} from 'react-collapsed';
18-
import usePendingRoute from 'hooks/usePendingRoute';
18+
import usePendingRoute from "hooks/usePendingRoute";
1919
import type {RouteItem} from 'components/Layout/getRouteMeta';
2020
import {siteConfig} from 'siteConfig';
2121

src/components/Logo.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import type {SVGProps} from 'react';
1212

1313
export 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
}

0 commit comments

Comments
 (0)