From 13df4a78312d0af0a06200718618db1f571e6c36 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Thu, 4 Dec 2025 21:10:20 +0000 Subject: [PATCH] Put the loading status down below --- webclient/src/Feed.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webclient/src/Feed.js b/webclient/src/Feed.js index d418419..6129008 100644 --- a/webclient/src/Feed.js +++ b/webclient/src/Feed.js @@ -101,7 +101,7 @@ function Feed({ updateCache }) { QotNews - {loadingStatus &&

Preloading stories {loadingStatus.current} / {loadingStatus.total}...

} + {error &&
Connection error? Click to expand. @@ -109,6 +109,7 @@ function Feed({ updateCache }) { {stories &&

Loaded feed from cache.

}
} + {stories ?
{stories.map(x => @@ -130,6 +131,8 @@ function Feed({ updateCache }) { :

Loading...

} + + {loadingStatus &&

Preloading stories {loadingStatus.current} / {loadingStatus.total}...

}
); }