Fix wording for missing public tracks

This commit is contained in:
Paul Bienkowski 2021-04-19 21:53:35 +02:00
parent bca3582e30
commit 13b6dd8691
2 changed files with 2 additions and 2 deletions

View file

@ -82,7 +82,7 @@ function MostRecentTrack() {
<Loader active={track === null} /> <Loader active={track === null} />
{track === undefined ? ( {track === undefined ? (
<Message> <Message>
No track uploaded yet. <Link to="/upload">Be the first!</Link> No public tracks yet. <Link to="/upload">Upload the first!</Link>
</Message> </Message>
) : track ? ( ) : track ? (
<Item.Group> <Item.Group>

View file

@ -81,7 +81,7 @@ function TrackList({privateTracks}: {privateTracks: boolean}) {
</Item.Group> </Item.Group>
) : ( ) : (
<Message> <Message>
No track uploaded yet. <Link to="/upload">Be the first!</Link> No public tracks yet. <Link to="/upload">Upload the first!</Link>
</Message> </Message>
)} )}
</div> </div>