Skip to content

Commit

Permalink
fix : build error
Browse files Browse the repository at this point in the history
- #271
- omit으로 불필요한 props 제거
  • Loading branch information
jasper200207 committed Jul 18, 2024
1 parent bf2be00 commit ccef39c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/StudyCard/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Study } from '@/types';

export interface StudyCardProps extends Study {
export interface StudyCardProps extends Omit<Study, 'studyLeaderId' | 'teamReference'> {
rank: number;
}

0 comments on commit ccef39c

Please sign in to comment.