Fix missing error on PostThread (#3295)

This commit is contained in:
Hailey 2024-03-21 10:16:04 -07:00 committed by GitHub
parent eb0ee6ae1c
commit 4ff2bb7aba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -371,7 +371,7 @@ export function PostThread({
return (
<>
<ListMaybePlaceholder
isLoading={!preferences || !thread}
isLoading={(!preferences || !thread) && !error}
isError={!!error}
onRetry={refetch}
errorTitle={error?.title}