Shun Miyazawa 4 년 전
부모
커밋
51148dbdc8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/app/src/components/SubscribeButton.tsx

+ 1 - 1
packages/app/src/components/SubscribeButton.tsx

@@ -16,8 +16,8 @@ type Props = {
 const SubscruibeButton: FC<Props> = (props: Props) => {
   const { t } = useTranslation();
 
-  const [isWatching, setIsWatching] = useState(false);
   const { appContainer, pageContainer } = props;
+  const [isWatching, setIsWatching] = useState(false);
 
   const handleClick = async() => {
     try {