diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-09-25 15:01:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-25 15:01:25 +0100 |
commit | f7a2368100d293c7ddc65bf27ade9fda66ecda95 (patch) | |
tree | fa9c3699b61bced293d5e2eddf1d76d2530b9c4d /src/state/queries/profile-lists.ts | |
parent | bd393b1b387eeddff33a520f60f04387c9105379 (diff) | |
download | voidsky-f7a2368100d293c7ddc65bf27ade9fda66ecda95.tar.zst |
Header blurred banner on overscroll (take 2) (#5474)
* grow banner when overscrolling * add blurview * make backdrop blur as it scrolls * add activity indicator * use rotated spinner instead of arrow * persist position of back button * make back button prettier * make blur less jarring * Unify effects * Tweak impl * determine if should animate based on scroll amount * sign comment --------- Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
Diffstat (limited to 'src/state/queries/profile-lists.ts')
-rw-r--r-- | src/state/queries/profile-lists.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/queries/profile-lists.ts b/src/state/queries/profile-lists.ts index 03c983ff8..5c9f9f0d6 100644 --- a/src/state/queries/profile-lists.ts +++ b/src/state/queries/profile-lists.ts @@ -7,7 +7,7 @@ import {useModerationOpts} from '../preferences/moderation-opts' const PAGE_SIZE = 30 type RQPageParam = string | undefined -const RQKEY_ROOT = 'profile-lists' +export const RQKEY_ROOT = 'profile-lists' export const RQKEY = (did: string) => [RQKEY_ROOT, did] export function useProfileListsQuery(did: string, opts?: {enabled?: boolean}) { |