diff --git a/frontend/src/pages/HomePage.js b/frontend/src/pages/HomePage.js
index e83c9cb..735dbbb 100644
--- a/frontend/src/pages/HomePage.js
+++ b/frontend/src/pages/HomePage.js
@@ -82,7 +82,7 @@ function MostRecentTrack() {
{track === undefined ? (
- No track uploaded yet. Be the first!
+ No public tracks yet. Upload the first!
) : track ? (
diff --git a/frontend/src/pages/TracksPage.tsx b/frontend/src/pages/TracksPage.tsx
index 47abbf8..4de1b7b 100644
--- a/frontend/src/pages/TracksPage.tsx
+++ b/frontend/src/pages/TracksPage.tsx
@@ -81,7 +81,7 @@ function TrackList({privateTracks}: {privateTracks: boolean}) {
) : (
- No track uploaded yet. Be the first!
+ No public tracks yet. Upload the first!
)}