about summary refs log tree commit diff
path: root/src/view/screens/PostThread.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-10-26 14:34:47 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-10-26 14:34:47 -0500
commit1983512fef37c5f27a048728815ae194bb24820b (patch)
tree0674298ccf9bb067457be7f77258df2556957972 /src/view/screens/PostThread.tsx
parent349cfe7177affde7e3acae2616c6c8a2fa11b1c0 (diff)
downloadvoidsky-1983512fef37c5f27a048728815ae194bb24820b.tar.zst
Update to latest APIs
Diffstat (limited to 'src/view/screens/PostThread.tsx')
-rw-r--r--src/view/screens/PostThread.tsx4
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) {