diff options
Diffstat (limited to 'src/view')
-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 540382766..003859b85 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, 'blueskyweb.xyz:Posts', recordKey) + const uri = makeRecordUri(name, 'todo.social.post', recordKey) useEffect(() => { if (visible) { diff --git a/src/view/screens/PostRepostedBy.tsx b/src/view/screens/PostRepostedBy.tsx index 60950139d..e8f0f772f 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, 'blueskyweb.xyz:Posts', recordKey) + const uri = makeRecordUri(name, 'todo.social.post', recordKey) useEffect(() => { if (visible) { diff --git a/src/view/screens/PostThread.tsx b/src/view/screens/PostThread.tsx index 8da40302b..819bf4878 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, 'blueskyweb.xyz:Posts', recordKey) + const uri = makeRecordUri(name, 'todo.social.post', recordKey) useEffect(() => { if (visible) { |