mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
Fix wrong query key
This commit is contained in:
@ -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
|
||||
) || []
|
||||
}
|
||||
]
|
||||
|
Reference in New Issue
Block a user