···134134 | undefined
135135 const {data: threadgateRecord} = useThreadgateRecordQuery({
136136 /**
137137- * If the user is the OP and the root post has a threadgate, we should load
138138- * the threadgate record. Otherwise, fallback to initialData, which is taken
139139- * from the response from `getPostThread`.
137137+ * If the user is the OP and we have a root post, fetch the threadgate.
140138 */
141141- enabled: Boolean(isOP && rootPostUri && initialThreadgateRecord),
139139+ enabled: Boolean(isOP && rootPostUri),
142140 postUri: rootPostUri,
143141 initialData: initialThreadgateRecord,
144142 })