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;
264
264
type NormalContestTabType = typeof NormalContestTabTypes [ number ] ;
265
265
const TAB_PARAM = "activeTab" ;
266
266
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 ) => {
268
274
const location = useLocation ( ) ;
269
275
const { showProblems } = props ;
270
276
const tabs : NormalContestTabType [ ] = showProblems
You can’t perform that action at this time.
0 commit comments