Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

show spinner when preferences has not loaded yet (#3756)

authored by

Hailey and committed by
GitHub
db0b0303 c33c3b7d

+3 -3
+3 -3
src/view/com/post-thread/PostThread.tsx
··· 371 371 ], 372 372 ) 373 373 374 - if (error || !thread) { 374 + if (!thread || !preferences || error) { 375 375 return ( 376 376 <ListMaybePlaceholder 377 - isLoading={(!preferences || !thread) && !error} 378 - isError={!!error} 377 + isLoading={!error} 378 + isError={Boolean(error)} 379 379 noEmpty 380 380 onRetry={refetch} 381 381 errorTitle={error?.title}