mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
fix: Remove duplicate 'fix-export-' prefix in export filename
Problem: Export filename was 'fix-export-fix-export-1764148101709.json' Root cause: export_id already contained 'fix-export-' prefix, then filename construction added it again Solution: Keep export_id as timestamp only, let filename construction add the prefix Result: Correct filename 'fix-export-1764148101709.json'
This commit is contained in:
@@ -1613,7 +1613,7 @@
|
||||
|
||||
// Create export data structure
|
||||
const exportData = {
|
||||
export_id: `fix-export-${Date.now()}`,
|
||||
export_id: `${Date.now()}`,
|
||||
export_timestamp: new Date().toISOString(),
|
||||
review_id: reviewState?.review_id || 'unknown',
|
||||
session_id: reviewState?.session_id || 'unknown',
|
||||
|
||||
Reference in New Issue
Block a user