Browse Source

clean code

Yuki Takei 3 years ago
parent
commit
f5601ae796
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/app/src/components/ReactMarkdownComponents/NextLink.tsx

+ 1 - 1
packages/app/src/components/ReactMarkdownComponents/NextLink.tsx

@@ -17,7 +17,7 @@ type Props = Omit<LinkProps, 'href'> & {
   children: React.ReactNode,
   href?: string,
   className?: string,
-} ;
+};
 
 export const NextLink = ({
   href, children, className, ...props