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