Fix missing error on `PostThread` (#3295)
parent
eb0ee6ae1c
commit
4ff2bb7aba
|
@ -371,7 +371,7 @@ export function PostThread({
|
|||
return (
|
||||
<>
|
||||
<ListMaybePlaceholder
|
||||
isLoading={!preferences || !thread}
|
||||
isLoading={(!preferences || !thread) && !error}
|
||||
isError={!!error}
|
||||
onRetry={refetch}
|
||||
errorTitle={error?.title}
|
||||
|
|
Loading…
Reference in New Issue