@@ -56,7 +56,7 @@ export default function AboutPage() {
5656 try {
5757 const users = await api . getMaintainers ( ) ;
5858 setAdminUsers ( users . filter ( ( user ) => user . is_active ) ) ;
59- } catch ( error ) {
59+ } catch {
6060 // Fallback to hardcoded admin if API fails
6161 setAdminUsers ( [
6262 {
@@ -248,7 +248,7 @@ export default function AboutPage() {
248248 </ CardHeader >
249249 < CardContent >
250250 < p className = "text-muted-foreground" >
251- Powered by Memray' s flamegraph generation, explore exactly where
251+ Powered by Memray' s flamegraph generation, explore exactly where
252252 memory is allocated in the CPython codebase. Click through call
253253 stacks, zoom into specific functions, and identify memory
254254 hotspots.
@@ -265,7 +265,7 @@ export default function AboutPage() {
265265 </ CardHeader >
266266 < CardContent >
267267 < p className = "text-muted-foreground" >
268- Access memory profiling data for any commit in CPython' s
268+ Access memory profiling data for any commit in CPython' s
269269 history. Compare commits across weeks, months, or years to
270270 understand long-term memory usage trends and validate that
271271 optimizations have lasting impact.
@@ -331,7 +331,7 @@ export default function AboutPage() {
331331 < CardContent className = "prose prose-lg prose-neutral dark:prose-invert max-w-none text-center" >
332332 < p >
333333 CPython Memory Insights is built on top of < strong > Memray</ strong > ,
334- Bloomberg' s powerful memory profiler for Python. Memray provides the
334+ Bloomberg' s powerful memory profiler for Python. Memray provides the
335335 core profiling capabilities that enable tracking memory allocations
336336 with minimal overhead and generate detailed flamegraphs for
337337 analysis.
@@ -358,7 +358,7 @@ export default function AboutPage() {
358358 </ CardTitle >
359359 </ CardHeader >
360360 < CardContent className = "space-y-4" >
361- { faqItems . map ( ( item , index ) => (
361+ { faqItems . map ( ( item ) => (
362362 < Collapsible
363363 key = { item . question }
364364 open = { openFAQ === item . question }
0 commit comments