Bluesky app fork with some witchin' additions 馃挮
witchsky.app
bluesky
fork
client
1import {msg} from '@lingui/core/macro'
2import {useLingui} from '@lingui/react'
3
4import {type DialogControlProps} from '#/components/Dialog'
5import * as Prompt from '#/components/Prompt'
6
7export function ReportConversationPrompt({
8 control,
9}: {
10 control: DialogControlProps
11}) {
12 const {_} = useLingui()
13
14 return (
15 <Prompt.Basic
16 control={control}
17 title={_(msg`Report conversation`)}
18 description={_(
19 msg`To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue.`,
20 )}
21 confirmButtonCta={_(msg`I understand`)}
22 onConfirm={() => {}}
23 showCancel={false}
24 />
25 )
26}