about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2025-07-17 11:01:10 -0500
committerGitHub <noreply@github.com>2025-07-17 11:01:10 -0500
commit42bfee5d9dbc772ad4e8423474837aba0c88ebba (patch)
tree514df31ebf71951c38c68fe06b26e3f9cb19e2a0
parent94a3e5bbe18ec316e6650754e56103d8692be1c5 (diff)
downloadvoidsky-42bfee5d9dbc772ad4e8423474837aba0c88ebba.tar.zst
Update copy and link in reporting flow (#8583)
* Update copy and link

* fix prettier

* Update link

---------

Co-authored-by: Samuel Newman <mozzius@protonmail.com>
-rw-r--r--src/components/moderation/ReportDialog/const.ts1
-rw-r--r--src/components/moderation/ReportDialog/index.tsx11
2 files changed, 8 insertions, 4 deletions
diff --git a/src/components/moderation/ReportDialog/const.ts b/src/components/moderation/ReportDialog/const.ts
index 30c9aff88..0f3fdbfac 100644
--- a/src/components/moderation/ReportDialog/const.ts
+++ b/src/components/moderation/ReportDialog/const.ts
@@ -1 +1,2 @@
 export const DMCA_LINK = 'https://bsky.social/about/support/copyright'
+export const SUPPORT_PAGE = 'https://bsky.social/about/support'
diff --git a/src/components/moderation/ReportDialog/index.tsx b/src/components/moderation/ReportDialog/index.tsx
index 797ff533f..cd8bbe0a4 100644
--- a/src/components/moderation/ReportDialog/index.tsx
+++ b/src/components/moderation/ReportDialog/index.tsx
@@ -30,7 +30,7 @@ import {createStaticClick, InlineLinkText, Link} from '#/components/Link'
 import {Loader} from '#/components/Loader'
 import {Text} from '#/components/Typography'
 import {useSubmitReportMutation} from './action'
-import {DMCA_LINK} from './const'
+import {SUPPORT_PAGE} from './const'
 import {useCopyForSubject} from './copy'
 import {initialState, reducer} from './state'
 import {type ReportDialogProps, type ReportSubject} from './types'
@@ -266,9 +266,9 @@ function Inner(props: ReportDialogProps) {
 
                   {['post', 'account'].includes(props.subject.type) && (
                     <Link
-                      to={DMCA_LINK}
+                      to={SUPPORT_PAGE}
                       label={_(
-                        msg`View details for reporting a copyright violation`,
+                        msg`Need to report a copyright violation, legal request, or regulatory compliance issue?`,
                       )}>
                       {({hovered, pressed}) => (
                         <View
@@ -285,7 +285,10 @@ function Inner(props: ReportDialogProps) {
                               : [t.atoms.border_contrast_low],
                           ]}>
                           <Text style={[a.flex_1, a.italic, a.leading_snug]}>
-                            <Trans>Need to report a copyright violation?</Trans>
+                            <Trans>
+                              Need to report a copyright violation, legal
+                              request, or regulatory compliance issue?
+                            </Trans>
                           </Text>
                           <SquareArrowTopRight
                             size="sm"