Skip to content

Commit

Permalink
Run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
SobennaStory authored and github-actions[bot] committed Apr 5, 2024
1 parent 48225ac commit 659cf62
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/judges/schedule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,8 @@ export function JudgeSchedule({ data, cutoffIndex, handleChange }: ScheduleProps
});

const handleRowClick = (record: any) => {
handleChange(record.teamId);
};
handleChange(record.teamId);
};

return (
<Table
Expand Down Expand Up @@ -283,9 +283,9 @@ export function JudgeSchedule({ data, cutoffIndex, handleChange }: ScheduleProps
</Table.Summary.Row>
</Table.Summary>
)}
onRow={(record) => ({
onClick: () => handleRowClick(record),
})}
onRow={record => ({
onClick: () => handleRowClick(record),
})}
/>
);
}

0 comments on commit 659cf62

Please sign in to comment.