jam411 3 anni fa
parent
commit
87791094ca

+ 0 - 5
packages/app/src/components/PageComment.tsx

@@ -19,15 +19,10 @@ import { CommentEditorProps } from './PageComment/CommentEditor';
 import { CommentEditorLazyRenderer } from './PageComment/CommentEditorLazyRenderer';
 import { DeleteCommentModal } from './PageComment/DeleteCommentModal';
 import { ReplyComments } from './PageComment/ReplyComments';
-// import { Skelton } from './Skelton';
 import { PageCommentSkelton } from './PageCommentSkelton';
 
 import styles from './PageComment.module.scss';
-// import CommentStyles from './PageComment/Comment.module.scss';
-// import CommentEditorStyles from './PageComment/CommentEditor.module.scss';
 
-
-// TODO: Update Skelton
 const CommentEditor = dynamic<CommentEditorProps>(() => import('./PageComment/CommentEditor').then(mod => mod.CommentEditor), { ssr: false });
 
 

+ 0 - 1
packages/app/src/components/PageComment/CommentEditorLazyRenderer.tsx

@@ -9,7 +9,6 @@ import { Skelton } from '../Skelton';
 
 import { CommentEditorProps } from './CommentEditor';
 
-import styles from '../PageComment.module.scss';
 import CommentEditorStyles from './CommentEditor.module.scss';
 
 const CommentEditor = dynamic<CommentEditorProps>(() => import('./CommentEditor').then(mod => mod.CommentEditor),