Shun Miyazawa 4 years ago
parent
commit
c1ec7b4801
1 changed files with 0 additions and 3 deletions
  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;
     }