From 8caa4f823a020bade6f0b21aea8db331f3b54aae Mon Sep 17 00:00:00 2001 From: Untone Date: Wed, 31 Jan 2024 18:46:34 +0300 Subject: [PATCH] detect-fix --- src/context/following.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/context/following.tsx b/src/context/following.tsx index 163fd030..c826740b 100644 --- a/src/context/following.tsx +++ b/src/context/following.tsx @@ -82,12 +82,8 @@ export const FollowingProvider = (props: { children: JSX.Element }) => { createEffect(() => { if (author()) { - console.debug('[context.following] author detect') - if (!subscriptions?.authors?.length && !subscriptions?.topics?.length) { - // && subscriptions.communites?.length - console.debug('[context.following] no subs detected') - fetchData() - } + console.debug('[context.following] author update detect') + fetchData() } })