diff --git a/src/components/Recipe/CommentForm/CommentForm.tsx b/src/components/Recipe/CommentForm/CommentForm.tsx index 5eb0ac1c7..5bddea74b 100644 --- a/src/components/Recipe/CommentForm/CommentForm.tsx +++ b/src/components/Recipe/CommentForm/CommentForm.tsx @@ -97,7 +97,6 @@ const Form = styled.form` const CommentTextarea = styled(Textarea)` height: 50px; padding: 8px; - font-size: 1.4rem; `; const SubmitButton = styled(Button)` diff --git a/src/components/Review/ReviewTagList/ReviewTagList.tsx b/src/components/Review/ReviewTagList/ReviewTagList.tsx index 54c717be4..715e61657 100644 --- a/src/components/Review/ReviewTagList/ReviewTagList.tsx +++ b/src/components/Review/ReviewTagList/ReviewTagList.tsx @@ -1,12 +1,10 @@ -import { Button, Heading, Spacing } from '@fun-eat/design-system'; +import { Heading, Spacing } from '@fun-eat/design-system'; import styled from 'styled-components'; import ReviewTagItem from '../ReviewTagItem/ReviewTagItem'; -import { SvgIcon } from '@/components/Common'; -import { MIN_DISPLAYED_TAGS_LENGTH, TAG_TITLE } from '@/constants'; +import { TAG_TITLE } from '@/constants'; import { useReviewTagsQuery } from '@/hooks/queries/review'; -import { useDisplayTag } from '@/hooks/review'; interface ReviewTagListProps { selectedTags: number[]; @@ -14,7 +12,6 @@ interface ReviewTagListProps { const ReviewTagList = ({ selectedTags }: ReviewTagListProps) => { const { data: tagsData } = useReviewTagsQuery(); - const { minDisplayedTags, canShowMore, showMoreTags } = useDisplayTag(tagsData, MIN_DISPLAYED_TAGS_LENGTH); return ( @@ -31,7 +28,7 @@ const ReviewTagList = ({ selectedTags }: ReviewTagListProps) => {