diff options
author | Hailey <me@haileyok.com> | 2025-01-26 15:40:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-26 15:40:02 -0800 |
commit | ebb6d5cc0f8179a5d1b9b71fc5ea4a64fcb4baee (patch) | |
tree | 48bf149cc57c94e3e249b77476f7cf1878d7e41c /src/state/queries | |
parent | 355c50fc0fe97feb8b4ec4e29d47b725252088c7 (diff) | |
download | voidsky-ebb6d5cc0f8179a5d1b9b71fc5ea4a64fcb4baee.tar.zst |
env var tweaks (#7457)
* add new events * Discard changes to package.json * Discard changes to src/lib/constants.ts * Discard changes to src/state/feed-feedback.tsx * Discard changes to yarn.lock * remove unused event
Diffstat (limited to 'src/state/queries')
-rw-r--r-- | src/state/queries/suggested-follows.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/queries/suggested-follows.ts b/src/state/queries/suggested-follows.ts index 22033c0a8..0a2343150 100644 --- a/src/state/queries/suggested-follows.ts +++ b/src/state/queries/suggested-follows.ts @@ -120,7 +120,7 @@ export function useSuggestedFollowsByActorQuery({ const suggestions = res.data.isFallback ? [] : res.data.suggestions.filter(profile => !profile.viewer?.following) - return {suggestions} + return {suggestions, recId: res.data.recId} }, enabled, }) |