mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix(frontend/favorites): fix favorite releases not loading. add a circle progress while loading
This commit is contained in:
parent
bbca9f1bd1
commit
25e8015735
1 changed files with 5 additions and 1 deletions
|
@ -51,7 +51,11 @@ export default function History() {
|
|||
<>
|
||||
{!userStore.isAuth ? (
|
||||
<LogInNeeded />
|
||||
) : releases > 0 ? (
|
||||
) : !releases ? (
|
||||
<div className="center-align">
|
||||
<progress className="circle" />
|
||||
</div>
|
||||
) : releases.length > 0 ? (
|
||||
<ReleasesOverview
|
||||
page={page}
|
||||
setPage={setPage}
|
||||
|
|
Loading…
Add table
Reference in a new issue