소스 검색

fix lint error

Shun Miyazawa 10 달 전
부모
커밋
e5209e69ac
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      apps/app/src/features/mermaid/components/MermaidViewer.tsx

+ 1 - 1
apps/app/src/features/mermaid/components/MermaidViewer.tsx

@@ -20,7 +20,7 @@ export const MermaidViewer = React.memo((props: MermaidViewerProps): JSX.Element
   const ref = useRef<HTMLDivElement>(null);
 
   useEffect(() => {
-    (async () => {
+    (async() => {
       if (ref.current != null && value != null) {
         mermaid.initialize({
           theme: isDarkMode ? 'dark' : undefined,