diff options
author | Eric Bailey <git@esb.lol> | 2024-05-14 09:22:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-14 09:22:09 -0500 |
commit | 9173be686c1df9adc6cbb9cc2175f8909a868c35 (patch) | |
tree | 25ea67a686969a086249769a1a3a445cd819a9ff /src/components/dms/MessageReportDialog.tsx | |
parent | 107760d551dee695f76409337048cd8c7917b784 (diff) | |
download | voidsky-9173be686c1df9adc6cbb9cc2175f8909a868c35.tar.zst |
[🐴] Swap in new package, update usages (#3992)
* Swap in new package, update usages * Remove uneccessary patch * Override type in safe place
Diffstat (limited to 'src/components/dms/MessageReportDialog.tsx')
-rw-r--r-- | src/components/dms/MessageReportDialog.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/dms/MessageReportDialog.tsx b/src/components/dms/MessageReportDialog.tsx index eedb12440..6071312e9 100644 --- a/src/components/dms/MessageReportDialog.tsx +++ b/src/components/dms/MessageReportDialog.tsx @@ -1,10 +1,10 @@ import React, {memo, useMemo, useState} from 'react' import {View} from 'react-native' -import {RichText as RichTextAPI} from '@atproto/api' import { ChatBskyConvoDefs, ComAtprotoModerationCreateReport, -} from '@atproto-labs/api' + RichText as RichTextAPI, +} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useMutation} from '@tanstack/react-query' |