This commit is contained in:
xmflsct 2022-08-19 11:53:16 +02:00
parent 88bafcc1e0
commit 16dfcec9f2
1 changed files with 7 additions and 7 deletions

View File

@ -32,7 +32,7 @@ const contextMenuAccount = ({
const { t } = useTranslation('componentContextMenu') const { t } = useTranslation('componentContextMenu')
const queryClient = useQueryClient() const queryClient = useQueryClient()
const mutateion = useTimelineMutation({ const mutation = useTimelineMutation({
onSuccess: (_, params) => { onSuccess: (_, params) => {
queryClient.refetchQueries(['Relationship', { id: accountId }]) queryClient.refetchQueries(['Relationship', { id: accountId }])
const theParams = params as MutationVarsTimelineUpdateAccountProperty const theParams = params as MutationVarsTimelineUpdateAccountProperty
@ -117,7 +117,7 @@ const contextMenuAccount = ({
analytics('timeline_shared_headeractions_account_mute_press', { analytics('timeline_shared_headeractions_account_mute_press', {
page: queryKey && queryKey[1].page page: queryKey && queryKey[1].page
}) })
mutateion.mutate({ mutation.mutate({
type: 'updateAccountProperty', type: 'updateAccountProperty',
queryKey, queryKey,
id: accountId, id: accountId,
@ -128,18 +128,18 @@ const contextMenuAccount = ({
analytics('timeline_shared_headeractions_account_block_press', { analytics('timeline_shared_headeractions_account_block_press', {
page: queryKey && queryKey[1].page page: queryKey && queryKey[1].page
}) })
mutateion.mutate({ mutation.mutate({
type: 'updateAccountProperty', type: 'updateAccountProperty',
queryKey, queryKey,
id: accountId, id: accountId,
payload: { property: 'block', currentValue: relationship?.blocking } payload: { property: 'block', currentValue: relationship?.blocking }
}) })
} }
if (actions[index].id === 'account-report') { if (actions[index].id === 'account-reports') {
analytics('timeline_shared_headeractions_account_reports_press', { analytics('timeline_shared_headeractions_account_reports_press', {
page: queryKey && queryKey[1].page page: queryKey && queryKey[1].page
}) })
mutateion.mutate({ mutation.mutate({
type: 'updateAccountProperty', type: 'updateAccountProperty',
queryKey, queryKey,
id: accountId, id: accountId,