jam411 3 лет назад
Родитель
Сommit
ea38c47c76
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      packages/app/src/components/PageComment/Comment.tsx

+ 1 - 2
packages/app/src/components/PageComment/Comment.tsx

@@ -2,7 +2,6 @@ import React, { useEffect, useState } from 'react';
 
 
 
 
 import { UserPicture } from '@growi/ui';
 import { UserPicture } from '@growi/ui';
-import { bool } from 'aws-sdk/clients/redshiftdata';
 import { format } from 'date-fns';
 import { format } from 'date-fns';
 import { useTranslation } from 'next-i18next';
 import { useTranslation } from 'next-i18next';
 import { UncontrolledTooltip } from 'reactstrap';
 import { UncontrolledTooltip } from 'reactstrap';
@@ -24,7 +23,7 @@ import CommentEditor from './CommentEditor';
 
 
 type CommentProps = {
 type CommentProps = {
   comment: ICommentHasId,
   comment: ICommentHasId,
-  isReadOnly: bool,
+  isReadOnly: boolean,
   deleteBtnClicked: (comment: ICommentHasId) => void,
   deleteBtnClicked: (comment: ICommentHasId) => void,
   onComment: () => void,
   onComment: () => void,
   rendererOptions: RendererOptions,
   rendererOptions: RendererOptions,