Skip to content

Commit

Permalink
fix : build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed May 27, 2024
1 parent 1c3ea9d commit c9118e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/community/interest/WritePostInterest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { interestTag } from '@/constant/interestTag';

interface WritePostInterestType {
postData: Partial<WritePostType>;
setPostData: Dispatch<React.SetStateAction<Partial<WritePostType>>>;
setPostData: Dispatch<React.SetStateAction<WritePostType>>;
}

const WritePostInterest = ({ postData, setPostData }: WritePostInterestType) => {
Expand Down
6 changes: 3 additions & 3 deletions src/components/community/interest/WritePostInterestTag.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React, { Dispatch } from 'react';
import { writePostType } from '../mock/writePostType';
import { WritePostType } from '../model/writePostType';
import 'swiper/css';
import { Swiper, SwiperSlide } from 'swiper/react';
import { tagWithInterest } from '@/constant/TagWithInterest';

interface WritePostInterestTagType {
postData: Partial<writePostType>;
setPostData: Dispatch<React.SetStateAction<Partial<writePostType>>>;
postData: Partial<WritePostType>;
setPostData: Dispatch<React.SetStateAction<WritePostType>>;
}

const WritePostInterestTag = ({ postData, setPostData }: WritePostInterestTagType) => {
Expand Down

0 comments on commit c9118e3

Please sign in to comment.