diff --git a/src/views/Game/Game.tsx b/src/views/Game/Game.tsx index 3a6d87e121..1fda7a33ee 100644 --- a/src/views/Game/Game.tsx +++ b/src/views/Game/Game.tsx @@ -900,29 +900,22 @@ export function Game(): JSX.Element | null { }; const frag_timings = () => { - if ( - goban.current?.engine && - goban.current.engine.config && - goban.current.engine.config.moves && - goban.current.engine.config.start_time && - goban.current.engine.config.end_time && - goban.current.engine.config.free_handicap_placement && - goban.current.engine.config.handicap && - goban.current.engine.config.black_player_id && - goban.current.engine.config.white_player_id - ) { + if (goban.current?.engine?.config) { return ( ); } + return null; };