diff options
author | hailey <me@haileyok.com> | 2025-05-30 15:29:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-30 15:29:00 -0700 |
commit | 45a3e6c0d5c780e1d37951c81ce4ed28f6eaac33 (patch) | |
tree | 94de43ce730486b7cc532d9365484575ee11164e /src/state | |
parent | ce7b9dc430da65151694baaf84af4b4a800866b5 (diff) | |
download | voidsky-45a3e6c0d5c780e1d37951c81ce4ed28f6eaac33.tar.zst |
tweak ordering of explore components (#8432)
* tweak ordering of explore components * use better feed suggestions, metrics * tweak default limit * tweak * remove unnecessary if
Diffstat (limited to 'src/state')
-rw-r--r-- | src/state/queries/trending/useGetSuggestedFeedsQuery.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/queries/trending/useGetSuggestedFeedsQuery.ts b/src/state/queries/trending/useGetSuggestedFeedsQuery.ts index 6eef80942..42d27d9f3 100644 --- a/src/state/queries/trending/useGetSuggestedFeedsQuery.ts +++ b/src/state/queries/trending/useGetSuggestedFeedsQuery.ts @@ -9,7 +9,7 @@ import {STALE} from '#/state/queries' import {usePreferencesQuery} from '#/state/queries/preferences' import {useAgent} from '#/state/session' -export const DEFAULT_LIMIT = 5 +export const DEFAULT_LIMIT = 15 export const createGetSuggestedFeedsQueryKey = () => ['suggested-feeds'] |