diff --git a/components/MyPages/Sidebar/index.tsx b/components/MyPages/Sidebar/index.tsx index ebb5047b5..44051d20f 100644 --- a/components/MyPages/Sidebar/index.tsx +++ b/components/MyPages/Sidebar/index.tsx @@ -44,7 +44,7 @@ export default async function Sidebar({ lang }: LangParams) { ))} - + Log out diff --git a/components/TempDesignSystem/Link/index.tsx b/components/TempDesignSystem/Link/index.tsx index fb2fe3eca..3d6fbbae0 100644 --- a/components/TempDesignSystem/Link/index.tsx +++ b/components/TempDesignSystem/Link/index.tsx @@ -11,6 +11,7 @@ export default function Link({ href, partialMatch = false, size, + prefetch, variant, ...props }: LinkProps) { @@ -25,5 +26,12 @@ export default function Link({ size, variant, }) - return + return ( + + ) } diff --git a/components/TempDesignSystem/Link/link.ts b/components/TempDesignSystem/Link/link.ts index 77a1069c3..599d6b32e 100644 --- a/components/TempDesignSystem/Link/link.ts +++ b/components/TempDesignSystem/Link/link.ts @@ -7,4 +7,5 @@ export interface LinkProps VariantProps { href: string partialMatch?: boolean + prefetch?: boolean }