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