diff --git a/oauth/src/App.tsx b/oauth/src/App.tsx index f97dce7..b881f35 100644 --- a/oauth/src/App.tsx +++ b/oauth/src/App.tsx @@ -1213,8 +1213,8 @@ function App() { // Extract content based on format const contentText = isNewFormat ? value.text : (value.content || value.body || ''); - // For AI comments, always use the loaded AI profile instead of record.value.author - const authorInfo = aiProfile; + // Use the author from the record if available, otherwise fall back to AI profile + const authorInfo = value.author || aiProfile; const postInfo = isNewFormat ? value.post : null; const contentType = value.type || 'unknown'; const createdAt = value.createdAt || value.generated_at || '';