Reset after failed auto refetch

This commit is contained in:
xmflsct 2023-04-17 23:00:10 +02:00
parent 7a5464e38a
commit 824730bc40
1 changed files with 1 additions and 0 deletions

View File

@ -218,6 +218,7 @@ const TimelineRefresh: React.FC<Props> = ({
} }
isFetchingPrev.value = false isFetchingPrev.value = false
}) })
.catch(() => (isFetchingPrev.value = false))
} }
const runFetchLatest = async () => { const runFetchLatest = async () => {