From 25e8015735f81ec71920f18ca470b77310f3f460 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Wed, 15 May 2024 21:59:05 +0500 Subject: [PATCH] fix(frontend/favorites): fix favorite releases not loading. add a circle progress while loading --- frontend/app/favorites/page.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/app/favorites/page.js b/frontend/app/favorites/page.js index be6ea5c..84e6ac1 100644 --- a/frontend/app/favorites/page.js +++ b/frontend/app/favorites/page.js @@ -51,7 +51,11 @@ export default function History() { <> {!userStore.isAuth ? ( - ) : releases > 0 ? ( + ) : !releases ? ( +
+ +
+ ) : releases.length > 0 ? (