Skip to content

Commit e448b2a

Browse files
committed
Fix minor error
1 parent c1bfbf0 commit e448b2a

File tree

1 file changed

+7
-1
lines changed
  • atcoder-problems-frontend/src/pages/Internal/VirtualContest/ShowContest

1 file changed

+7
-1
lines changed

atcoder-problems-frontend/src/pages/Internal/VirtualContest/ShowContest/index.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,13 @@ const NormalContestTabTypes = ["Problems", "Standings"] as const;
264264
type NormalContestTabType = typeof NormalContestTabTypes[number];
265265
const TAB_PARAM = "activeTab";
266266

267-
const NormalContestPage = (props: StandingsProps) => {
267+
interface NormalContestPageProps extends StandingsProps {
268+
readonly enableEstimatedPerformances: boolean;
269+
readonly atCoderUserId: string;
270+
readonly penaltySecond: number;
271+
}
272+
273+
const NormalContestPage = (props: NormalContestPageProps) => {
268274
const location = useLocation();
269275
const { showProblems } = props;
270276
const tabs: NormalContestTabType[] = showProblems

0 commit comments

Comments
 (0)