diff options
Diffstat (limited to 'src/view/screens/PostThread.tsx')
-rw-r--r-- | src/view/screens/PostThread.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
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) { |