Remove duplicate tournament name

This commit is contained in:
Thor77 2022-06-11 22:51:47 +02:00
parent 38ac3c29b0
commit 19eb3f531d
No known key found for this signature in database
GPG Key ID: 5051E71B46AA669A
2 changed files with 0 additions and 2 deletions

View File

@ -37,7 +37,6 @@ class StatisticsTournamentPage extends React.Component {
<TurniereNavigation/>
<TournamentBigImage {...tournamentStatistics}/>
<TournamentStatusBar>
<NavbarBrand>{tournamentStatistics.name}</NavbarBrand>
<ButtonGroup className='me-auto'>
<EditButton tournamentId={tournamentStatistics.id}
isOwner={this.props.username === tournamentStatistics.ownerUsername}

View File

@ -38,7 +38,6 @@ class PrivateTournamentPage extends React.Component {
function StatusBar(props) {
return (<TournamentStatusBar>
<NavbarBrand>{props.tournament.name}</NavbarBrand>
<ButtonGroup className='me-auto'>
<EditButton tournamentId={props.tournament.id} isOwner={props.isOwner} isSignedIn={props.isSignedIn}/>
<StatisticsButton tournamentId={props.tournament.id}/>