@@ -22,7 +22,6 @@ import { useMemo, useState } from 'react'
2222// Mock data generator
2323const generateMockDrafts = ( ) => [
2424 {
25- account : '@johnsmith' ,
2625 charCount : 245 ,
2726 content :
2827 'This PR addresses the memory leak issue reported in #1233. The problem was caused by event listeners not being properly disposed...' ,
@@ -41,7 +40,6 @@ const generateMockDrafts = () => [
4140 url : 'https://github.com/microsoft/vscode/pull/1234' ,
4241 } ,
4342 {
44- account : 'u/techwriter' ,
4543 charCount : 180 ,
4644 content :
4745 "I've been using GitLens for years and it's absolutely essential for my workflow. The inline blame annotations are incredibly helpful when..." ,
@@ -58,7 +56,6 @@ const generateMockDrafts = () => [
5856 url : 'https://reddit.com/r/programming/comments/abc123' ,
5957 } ,
6058 {
61- account : '@sarahdev' ,
6259 charCount : 456 ,
6360 content :
6461 "When using useEffect with async functions, the cleanup function doesn't seem to be called correctly in certain edge cases..." ,
@@ -77,7 +74,6 @@ const generateMockDrafts = () => [
7774 url : 'https://github.com/facebook/react/issues/5678' ,
7875 } ,
7976 {
80- account : '@alexcoder' ,
8177 charCount : 322 ,
8278 content :
8379 'LGTM! Just a few minor suggestions about the examples in the routing section. Consider adding more context about...' ,
@@ -96,7 +92,6 @@ const generateMockDrafts = () => [
9692 url : 'https://github.com/vercel/next.js/pull/9012' ,
9793 } ,
9894 {
99- account : '@mikeeng' ,
10095 charCount : 678 ,
10196 content :
10297 'This PR implements ESM support in worker threads as discussed in the last TSC meeting. The implementation follows...' ,
@@ -465,7 +460,6 @@ export const ClaudePrototype = () => {
465460 { draft . kind }
466461 </ span >
467462 { getStateIcon ( draft . state ) }
468- < span className = 'text-gray-500' > { draft . account } </ span >
469463 </ div >
470464
471465 { /* Title + snippet */ }
0 commit comments