Skip to content

Commit

Permalink
Fix missing error on PostThread (#3295)
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyok authored Mar 21, 2024
1 parent eb0ee6a commit 4ff2bb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/com/post-thread/PostThread.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ export function PostThread({
return (
<>
<ListMaybePlaceholder
isLoading={!preferences || !thread}
isLoading={(!preferences || !thread) && !error}
isError={!!error}
onRetry={refetch}
errorTitle={error?.title}
Expand Down

0 comments on commit 4ff2bb7

Please sign in to comment.