fix: 🐛

This commit is contained in:
codytseng 2025-11-11 21:53:57 +08:00
parent 485ca82e30
commit 8ed28a79b1
4 changed files with 12 additions and 12 deletions

View file

@ -51,7 +51,9 @@ const NoteListPage = forwardRef<TPageRef>((_, ref) => {
let content: React.ReactNode = null
if (!isReady) {
content = <div className="text-center text-sm text-muted-foreground">{t('loading...')}</div>
content = (
<div className="text-center text-sm text-muted-foreground pt-3">{t('loading...')}</div>
)
} else if (!feedInfo) {
content = <WelcomeGuide />
} else if (feedInfo.feedType === 'following' && !pubkey) {