You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Make GitHub Issues link clickable in FAQ page
- Updated FAQ data structure to support ReactNode answers
- Added answerText for structured data compatibility
- GitHub Issues URL now renders as a proper link
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <[email protected]>
answerText?: string;// Plain text version for structured data
12
+
}
13
+
14
+
interfaceFAQCategory{
15
+
category: string;
16
+
questions: FAQItem[];
17
+
}
18
+
19
+
constfaqData: FAQCategory[]=[
7
20
{
8
21
category: 'General',
9
22
questions: [
@@ -85,7 +98,16 @@ const faqData = [
85
98
},
86
99
{
87
100
question: 'How do I report bugs?',
88
-
answer: 'Report bugs via GitHub Issues at https://github.com/Smart-AI-Memory/empathy-framework/issues. Include your environment details, steps to reproduce, and expected vs actual behavior.',
. Include your environment details, steps to reproduce, and expected vs actual behavior.
108
+
</>
109
+
),
110
+
answerText: 'Report bugs via GitHub Issues at https://github.com/Smart-AI-Memory/empathy-framework/issues. Include your environment details, steps to reproduce, and expected vs actual behavior.',
89
111
},
90
112
{
91
113
question: 'Can I contribute to the project?',
@@ -106,7 +128,7 @@ export default function FAQPage() {
0 commit comments