Fix wording for missing public tracks
This commit is contained in:
parent
bca3582e30
commit
13b6dd8691
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue