Bluesky app fork with some witchin' additions 💫

Fetch it (#4974)

authored by

Eric Bailey and committed by
GitHub
92989282 9f1c4113

+2 -4
+2 -4
src/view/com/post-thread/PostThread.tsx
··· 134 134 | undefined 135 135 const {data: threadgateRecord} = useThreadgateRecordQuery({ 136 136 /** 137 - * If the user is the OP and the root post has a threadgate, we should load 138 - * the threadgate record. Otherwise, fallback to initialData, which is taken 139 - * from the response from `getPostThread`. 137 + * If the user is the OP and we have a root post, fetch the threadgate. 140 138 */ 141 - enabled: Boolean(isOP && rootPostUri && initialThreadgateRecord), 139 + enabled: Boolean(isOP && rootPostUri), 142 140 postUri: rootPostUri, 143 141 initialData: initialThreadgateRecord, 144 142 })