Shun Miyazawa 4 лет назад
Родитель
Сommit
c1ec7b4801
1 измененных файлов с 0 добавлено и 3 удалено
  1. 0 3
      packages/app/src/components/BookmarkButton.tsx

+ 0 - 3
packages/app/src/components/BookmarkButton.tsx

@@ -12,8 +12,6 @@ import { apiv3Get, apiv3Put } from '~/client/util/apiv3-client';
 
 interface Props {
   pageId: Types.ObjectId,
-  // isBookmarked: boolean
-  // sumOfBookmarks: number
 }
 
 const BookmarkButton: FC<Props> = (props: Props) => {
@@ -34,7 +32,6 @@ const BookmarkButton: FC<Props> = (props: Props) => {
   }, [pageId]);
 
   const handleClick = async() => {
-
     if (isGuestUser) {
       return;
     }