File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
atcoder-problems-frontend/src/pages/Internal/VirtualContest/ShowContest Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,13 @@ const NormalContestTabTypes = ["Problems", "Standings"] as const;
264264type NormalContestTabType = typeof NormalContestTabTypes [ number ] ;
265265const 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
You can’t perform that action at this time.
0 commit comments