Files
awoooi/apps/web/src/components/errors/index.ts
OG T 2f02f1523a
All checks were successful
E2E Health Check / e2e-health (push) Successful in 18s
feat(web): #126 Frontend Replay UI 整合
- 新增 useUXAudit hook (5 分鐘自動刷新)
- 新增 UXAuditCard 組件 (健康度 + Replay 連結)
- 整合到錯誤追蹤頁面
- i18n: zh-TW + en 翻譯

功能:
- UX 健康度評分 (good/moderate/poor)
- 有錯誤的 Replay 連結
- 憤怒點擊/死亡點擊統計
- Replay Dashboard 快捷連結

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-03-31 16:04:44 +08:00

21 lines
603 B
TypeScript

/**
* Error Components Index
* ======================
* Phase 10: Sentry + OpenClaw + UI 整合
*
* Components:
* - ErrorOverviewCard (#41)
* - RecentIssuesList (#42)
* - ErrorTrendChart (#43)
* - UXAuditCard (#126) - Session Replay 整合
*
* 建立: 2026-03-26 (台北時區)
* 建立者: Claude Code (#41-44 Error UI)
* 更新: 2026-03-31 Claude Code (#126 Replay UI)
*/
export { ErrorOverviewCard } from './error-overview-card'
export { RecentIssuesList } from './recent-issues-list'
export { ErrorTrendChart } from './error-trend-chart'
export { UXAuditCard } from './ux-audit-card'