diff options
Diffstat (limited to 'src/view/screens')
-rw-r--r-- | src/view/screens/PostLikedBy.tsx | 2 | ||||
-rw-r--r-- | src/view/screens/PostRepostedBy.tsx | 2 | ||||
-rw-r--r-- | src/view/screens/PostThread.tsx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/view/screens/PostLikedBy.tsx b/src/view/screens/PostLikedBy.tsx index 003859b85..8ec0ca5a5 100644 --- a/src/view/screens/PostLikedBy.tsx +++ b/src/view/screens/PostLikedBy.tsx @@ -7,7 +7,7 @@ import {useStores} from '../../state' export const PostLikedBy = ({visible, params}: ScreenParams) => { const store = useStores() const {name, recordKey} = params - const uri = makeRecordUri(name, 'todo.social.post', recordKey) + const uri = makeRecordUri(name, 'app.bsky.post', recordKey) useEffect(() => { if (visible) { diff --git a/src/view/screens/PostRepostedBy.tsx b/src/view/screens/PostRepostedBy.tsx index e8f0f772f..6cc84809d 100644 --- a/src/view/screens/PostRepostedBy.tsx +++ b/src/view/screens/PostRepostedBy.tsx @@ -7,7 +7,7 @@ import {useStores} from '../../state' export const PostRepostedBy = ({visible, params}: ScreenParams) => { const store = useStores() const {name, recordKey} = params - const uri = makeRecordUri(name, 'todo.social.post', recordKey) + const uri = makeRecordUri(name, 'app.bsky.post', recordKey) useEffect(() => { if (visible) { diff --git a/src/view/screens/PostThread.tsx b/src/view/screens/PostThread.tsx index 819bf4878..2c66e5e38 100644 --- a/src/view/screens/PostThread.tsx +++ b/src/view/screens/PostThread.tsx @@ -7,7 +7,7 @@ import {useStores} from '../../state' export const PostThread = ({visible, params}: ScreenParams) => { const store = useStores() const {name, recordKey} = params - const uri = makeRecordUri(name, 'todo.social.post', recordKey) + const uri = makeRecordUri(name, 'app.bsky.post', recordKey) useEffect(() => { if (visible) { |