diff --git a/src/state/models/feeds/posts.ts b/src/state/models/feeds/posts.ts
index 1de9867baa..6700bfff15 100644
--- a/src/state/models/feeds/posts.ts
+++ b/src/state/models/feeds/posts.ts
@@ -298,7 +298,7 @@ export class PostsFeedModel {
this.isBlocking = error instanceof GetAuthorFeed.BlockedActorError
this.isBlockedBy = error instanceof GetAuthorFeed.BlockedByActorError
this.error = cleanError(error)
- this.loadMoreError = cleanError(loadMoreError) // TODO
+ this.loadMoreError = cleanError(loadMoreError)
this.cleanError = this.error ? this._cleanError(this.error) : undefined
if (error) {
this.rootStore.log.error('Posts feed request failed', error)
diff --git a/src/view/com/posts/Feed.tsx b/src/view/com/posts/Feed.tsx
index a0d3d88bab..864165edba 100644
--- a/src/view/com/posts/Feed.tsx
+++ b/src/view/com/posts/Feed.tsx
@@ -250,7 +250,11 @@ function ErrorMessage({
{feed.cleanError?.message || feed.error}
-