Skip to content

Commit

Permalink
Fix: Type error
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeon81 committed Jul 29, 2024
1 parent 9b5796a commit cf9463b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/app/panel/main-page/MainMobileView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ const MainMobileView = ({ initData }: { initData: IPagination<IPost[]> }) => {
<Box key={project.recruit_id}>
<MainCard
{...project}
type={type}
favorite={
isInit
? getFavoriteData(project.recruit_id)
Expand Down
2 changes: 1 addition & 1 deletion src/types/IPostDetail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export interface IPost {
status: string
tagList: ITag[]
favorite: boolean | undefined
type?: ProjectType
type: ProjectType
}

export interface IPostDetail {
Expand Down

0 comments on commit cf9463b

Please sign in to comment.