diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-11-02 22:09:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-02 22:09:31 -0700 |
commit | 047f74c67de72c74ae5973612b566b2330dcd4a4 (patch) | |
tree | 404c50af2afad3a9bffcd6d1bf79c6b99c23607d | |
parent | 9437d743e20b1744b161458ed229cb51e98cf0e7 (diff) | |
download | voidsky-047f74c67de72c74ae5973612b566b2330dcd4a4.tar.zst |
Fix copyright report link (#1799)
-rw-r--r-- | src/view/com/modals/report/Modal.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/modals/report/Modal.tsx b/src/view/com/modals/report/Modal.tsx index 8aabe0871..98aa2d471 100644 --- a/src/view/com/modals/report/Modal.tsx +++ b/src/view/com/modals/report/Modal.tsx @@ -15,7 +15,7 @@ import {InputIssueDetails} from './InputIssueDetails' import {ReportReasonOptions} from './ReasonOptions' import {CollectionId} from './types' -const DMCA_LINK = 'https://bsky.app/support/copyright' +const DMCA_LINK = 'https://blueskyweb.xyz/support/copyright' export const snapPoints = [575] @@ -60,6 +60,7 @@ export function Component(content: ReportComponentProps) { try { if (issue === '__copyright__') { Linking.openURL(DMCA_LINK) + store.shell.closeModal() return } const $type = !isAccountReport |