Преглед изворни кода

Remove useless import styles

satof3 пре 2 година
родитељ
комит
1ab5428d34
1 измењених фајлова са 1 додато и 3 уклоњено
  1. 1 3
      apps/app/src/components/Comments.tsx

+ 1 - 3
apps/app/src/components/Comments.tsx

@@ -14,8 +14,6 @@ import { useCurrentUser } from '../stores/context';
 
 
 import type { CommentEditorProps } from './PageComment/CommentEditor';
 import type { CommentEditorProps } from './PageComment/CommentEditor';
 
 
-import styles from './PageComment.module.scss';
-
 const { isTopPage } = pagePathUtils;
 const { isTopPage } = pagePathUtils;
 
 
 
 
@@ -73,7 +71,7 @@ export const Comments = (props: CommentsProps): JSX.Element => {
   };
   };
 
 
   return (
   return (
-    <div className={`${styles['page-comment-styles']} page-comments-row mt-5 py-4 border-top d-edit-none d-print-none`}>
+    <div className="page-comments-row mt-5 py-4 border-top d-edit-none d-print-none">
       <h4 className="mb-3">{t('page_comment.comments')}</h4>
       <h4 className="mb-3">{t('page_comment.comments')}</h4>
       <div id="page-comments-list" className="page-comments-list" ref={pageCommentParentRef}>
       <div id="page-comments-list" className="page-comments-list" ref={pageCommentParentRef}>
         <PageComment
         <PageComment