Browse Source

fix: 🐛

imwald
codytseng 1 year ago
parent
commit
ab1fff53ef
  1. 4
      src/components/NoteList/index.tsx

4
src/components/NoteList/index.tsx

@ -226,7 +226,9 @@ export default function NoteList({ @@ -226,7 +226,9 @@ export default function NoteList({
<LoadingSkeleton isPictures={isPictures} />
</div>
) : events.length ? (
<div className="text-center text-sm text-muted-foreground mt-2">t('no more notes')</div>
<div className="text-center text-sm text-muted-foreground mt-2">
{t('no more notes')}
</div>
) : (
<div className="flex justify-center w-full mt-2">
<Button size="lg" onClick={() => setRefreshCount((pre) => pre + 1)}>

Loading…
Cancel
Save