diff options
Diffstat (limited to 'src/components/dialogs')
-rw-r--r-- | src/components/dialogs/PostInteractionSettingsDialog.tsx | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/components/dialogs/PostInteractionSettingsDialog.tsx b/src/components/dialogs/PostInteractionSettingsDialog.tsx index 63b640d9f..dbb966fd3 100644 --- a/src/components/dialogs/PostInteractionSettingsDialog.tsx +++ b/src/components/dialogs/PostInteractionSettingsDialog.tsx @@ -1,6 +1,10 @@ import React from 'react' -import {StyleProp, View, ViewStyle} from 'react-native' -import {AppBskyFeedDefs, AppBskyFeedPostgate, AtUri} from '@atproto/api' +import {type StyleProp, View, type ViewStyle} from 'react-native' +import { + type AppBskyFeedDefs, + type AppBskyFeedPostgate, + AtUri, +} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useQueryClient} from '@tanstack/react-query' @@ -22,7 +26,7 @@ import { import { createThreadgateViewQueryKey, getThreadgateView, - ThreadgateAllowUISetting, + type ThreadgateAllowUISetting, threadgateViewToAllowUISetting, useSetThreadgateAllowMutation, useThreadgateViewQuery, @@ -558,7 +562,8 @@ export function usePrefetchPostInteractionSettings({ await Promise.all([ queryClient.prefetchQuery({ queryKey: createPostgateQueryKey(postUri), - queryFn: () => getPostgateRecord({agent, postUri}), + queryFn: () => + getPostgateRecord({agent, postUri}).then(res => res ?? null), staleTime: STALE.SECONDS.THIRTY, }), queryClient.prefetchQuery({ |