Fix missing error on PostThread
(#3295)
This commit is contained in:
parent
eb0ee6ae1c
commit
4ff2bb7aba
1 changed files with 1 additions and 1 deletions
|
@ -371,7 +371,7 @@ export function PostThread({
|
|||
return (
|
||||
<>
|
||||
<ListMaybePlaceholder
|
||||
isLoading={!preferences || !thread}
|
||||
isLoading={(!preferences || !thread) && !error}
|
||||
isError={!!error}
|
||||
onRetry={refetch}
|
||||
errorTitle={error?.title}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue