fix skeleton

This commit is contained in:
plebeius.eth
2023-07-15 11:24:56 +02:00
parent 8be735a424
commit c11f0503f3
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ const All = () => {
useEffect(() => {
if (feed.length) {
if (feed) {
setFeedCacheState('all', true);
}
}, [feed.length, setFeedCacheState]);
+1 -1
View File
@@ -143,7 +143,7 @@ const Board = () => {
useEffect(() => {
if (feed.length) {
if (feed) {
setFeedCacheState(selectedAddress, true);
}
}, [selectedAddress, setFeedCacheState, feed.length]);
+1 -1
View File
@@ -123,7 +123,7 @@ const Subscriptions = () => {
useEffect(() => {
if (feed.length) {
if (feed) {
setFeedCacheState('subscriptions', true);
}
}, [feed.length, setFeedCacheState]);