Skip to content

Commit

Permalink
fix: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed May 27, 2024
1 parent 729cf63 commit 1c3ea9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/community/interest/WritePostInterest.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React, { Dispatch, useState } from 'react';
import { writePostType } from '../mock/writePostType';
import { WritePostType } from '../model/writePostType';
import { interestTag } from '@/constant/interestTag';

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

const WritePostInterest = ({ postData, setPostData }: WritePostInterestType) => {
Expand Down

0 comments on commit 1c3ea9d

Please sign in to comment.