Skip to content

Commit

Permalink
Run prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dylkaw committed Nov 6, 2024
1 parent 89a31d4 commit db0a268
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/components/collab/question-display.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,17 @@ const difficultyColors = {
Hard: "bg-red-500",
};


export default function QuestionDisplay({
roomId,
className,
date,
question
question,
}: {
roomId: string;
className?: string;
date?: Date;
question: Question | null;
}) {

if (!question) {
return <div>Question not found</div>;
}
Expand Down

0 comments on commit db0a268

Please sign in to comment.