Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Commit

Permalink
lint: 사용하지 않는 Param 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
toothlessdev committed Jan 28, 2024
1 parent 4dbe9e6 commit e1f07ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/test-page/Question.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const Question: React.FC<IQuestion> = ({ index, question }) => {
);
};

export const CommentaryQuestion: React.FC<ICommentaryQuestion> = ({ type, index, question, commentary, selected, answer }) => {
export const CommentaryQuestion: React.FC<ICommentaryQuestion> = ({ type, index, question, commentary, answer }) => {
return (
<div className={styles.commentary_question}>
<p>
Expand Down

0 comments on commit e1f07ae

Please sign in to comment.