Fix wrong query key

This commit is contained in:
xmflsct 2022-12-04 16:16:53 +01:00
parent fc06e4c629
commit b70ca924a1
3 changed files with 7 additions and 5 deletions

View File

@ -81,7 +81,7 @@ const TabSharedAccount: React.FC<TabSharedStackScreenProps<'Tab-Shared-Account'>
)
}
})
}, [])
}, [mAccount])
const { data } = useAccountQuery({ id: account.id })

View File

@ -48,8 +48,8 @@ const TabSharedAccountInLists: React.FC<
id: 'out',
title: t('shared.accountInLists.notInLists'),
data:
listsQuery?.data?.filter(
({ id }) => !accountInListsQuery?.data?.filter(d => d.id === id)?.length
listsQuery.data?.filter(
({ id }) => accountInListsQuery.data?.filter(d => d.id !== id).length
) || []
}
]

View File

@ -27,7 +27,9 @@ const useAccountQuery = ({
export type QueryKeyAccountInLists = ['AccountInLists', { id: Mastodon.Account['id'] }]
const accountInListsQueryFunction = ({ queryKey }: QueryFunctionContext<QueryKeyAccount>) => {
const accountInListsQueryFunction = ({
queryKey
}: QueryFunctionContext<QueryKeyAccountInLists>) => {
const { id } = queryKey[1]
return apiInstance<Mastodon.List[]>({
@ -42,7 +44,7 @@ const useAccountInListsQuery = ({
}: QueryKeyAccount[1] & {
options?: UseQueryOptions<Mastodon.List[], AxiosError>
}) => {
const queryKey: QueryKeyAccount = ['Account', { ...queryKeyParams }]
const queryKey: QueryKeyAccountInLists = ['AccountInLists', { ...queryKeyParams }]
return useQuery(queryKey, accountInListsQueryFunction, options)
}