Browse Source

fix lint error

Shun Miyazawa 10 months ago
parent
commit
e5209e69ac
1 changed files with 1 additions and 1 deletions
  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,