diff options
Diffstat (limited to 'src/pages/cv.tsx')
| -rw-r--r-- | src/pages/cv.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/cv.tsx b/src/pages/cv.tsx index 5882ff6..b23c7a2 100644 --- a/src/pages/cv.tsx +++ b/src/pages/cv.tsx @@ -38,7 +38,7 @@ const ExternalLink = ({ href = '', ...props }: AnchorHTMLAttributes<HTMLAnchorElement>) => ( - <Link {...props} external={true} href={href}> + <Link {...props} isExternal href={href}> {children} </Link> ); @@ -172,7 +172,7 @@ const CVPage: NextPageWithLayout = () => { }, { link: (chunks: ReactNode) => ( - <Link download={true} href={file}> + <Link href={file} isDownload> {chunks} </Link> ), |
