diff options
author | Vitaly Takmazov | 2022-10-28 00:30:31 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:58 +0300 |
commit | dec592d9d3be8936455b4caaa9a07f7fec3d3a70 (patch) | |
tree | 20a4367517b0be8116271f7878ea293de99acd84 /vnext/src/ui | |
parent | 9bd48005fda1d94a526e36bec256b56add65b28d (diff) |
Fix loading state
Diffstat (limited to 'vnext/src/ui')
-rw-r--r-- | vnext/src/ui/Feeds.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/ui/Feeds.js b/vnext/src/ui/Feeds.js index 7c51f3e7..d6813130 100644 --- a/vnext/src/ui/Feeds.js +++ b/vnext/src/ui/Feeds.js @@ -124,7 +124,7 @@ function Feed({ visitor, query, authRequired }) { error: false, tag: '' }); - const [loading, setLoading] = useState(false); + const [loading, setLoading] = useState(true); useEffect(() => { setLoading(true); |