Преглед на файлове

set the default value of isWatching to false

Shun Miyazawa преди 4 години
родител
ревизия
dc38c858b7
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      packages/app/src/components/SubscribeButton.tsx

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

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