소스 검색

fix: #2149 try to fix chat action button style

Yidadaa 1 년 전
부모
커밋
5b1d45c1a9
1개의 변경된 파일0개의 추가작업 그리고 10개의 파일을 삭제
  1. 0 10
      app/components/chat.tsx

+ 0 - 10
app/components/chat.tsx

@@ -309,16 +309,6 @@ function ChatAction(props: {
     });
   }
 
-  useEffect(() => {
-    const onClick = () => setTimeout(updateWidth, 10);
-    onClick();
-
-    window.addEventListener("click", onClick);
-    return () => {
-      window.removeEventListener("click", onClick);
-    };
-  }, []);
-
   return (
     <div
       className={`${styles["chat-input-action"]} clickable`}