diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3a915b090..bdd4de264 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -21,6 +21,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
### Fixed
* Publisher indicator on show pages and file cards/tiles will now always show the proper channel name.
* Performance improvements related to avoiding duplicate fetches.
+ * Fix incorrect prompt on empty published page
### Deprecated
*
diff --git a/ui/js/page/fileListPublished/view.jsx b/ui/js/page/fileListPublished/view.jsx
index 488a45086..35621b4aa 100644
--- a/ui/js/page/fileListPublished/view.jsx
+++ b/ui/js/page/fileListPublished/view.jsx
@@ -51,7 +51,7 @@ class FileListPublished extends React.Component {
if (isPending) {
content =
} else {
- content = You haven't downloaded anything from LBRY yet. Go navigate('/discover')} label="search for your first download" />!
+ content = It looks like you haven't published anything to LBRY yet. Go navigate('/publish')} label="share your beautiful cats with the world" />!
}
}