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
+1 -1
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}