Fix page change interval

This commit is contained in:
Thor77 2022-07-02 11:12:46 +02:00
parent c032228519
commit 129bfdb440
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class Main extends React.Component {
componentDidMount() { componentDidMount() {
this.updateTournament(); this.updateTournament();
const intervalIdPage = setInterval(this.increasePage, 3000); const intervalIdPage = setInterval(this.increasePage, 15000);
this.setState({intervalIdPage: intervalIdPage}); this.setState({intervalIdPage: intervalIdPage});
} }