diff options
author | hailey <hailey@blueskyweb.xyz> | 2025-08-26 17:13:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-26 17:13:11 -0700 |
commit | a1ed59e0eeb03d1f587512a1e567ebc298d71b38 (patch) | |
tree | 4c0beabb5682153bb9fbf1e3b682201ddfcdb6ca /src/state/queries/messages/mute-conversation.ts | |
parent | 39c6984c6edabcb432ef884e7d3b12ae51a2c09e (diff) | |
download | voidsky-a1ed59e0eeb03d1f587512a1e567ebc298d71b38.tar.zst |
use an env var for configurable proxy header (#8863)
Diffstat (limited to 'src/state/queries/messages/mute-conversation.ts')
-rw-r--r-- | src/state/queries/messages/mute-conversation.ts | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/state/queries/messages/mute-conversation.ts b/src/state/queries/messages/mute-conversation.ts index da9644145..d668e36cb 100644 --- a/src/state/queries/messages/mute-conversation.ts +++ b/src/state/queries/messages/mute-conversation.ts @@ -1,11 +1,15 @@ import { - ChatBskyConvoDefs, - ChatBskyConvoListConvos, - ChatBskyConvoMuteConvo, + type ChatBskyConvoDefs, + type ChatBskyConvoListConvos, + type ChatBskyConvoMuteConvo, } from '@atproto/api' -import {InfiniteData, useMutation, useQueryClient} from '@tanstack/react-query' +import { + type InfiniteData, + useMutation, + useQueryClient, +} from '@tanstack/react-query' -import {DM_SERVICE_HEADERS} from '#/state/queries/messages/const' +import {DM_SERVICE_HEADERS} from '#/lib/constants' import {useAgent} from '#/state/session' import {RQKEY as CONVO_KEY} from './conversation' import {RQKEY_ROOT as CONVO_LIST_KEY} from './list-conversations' |