Remove unused _unusedExtractTags function

- Function was kept for backward compatibility but is never used
- Removing it to fix TypeScript warning
- All TypeScript checks now pass
This commit is contained in:
Nicolas Cantu 2025-12-27 23:27:13 +01:00
parent 0112c7152f
commit 6d478acd2c

View File

@ -84,14 +84,6 @@ export function parseReviewFromEvent(event: Event): Review | null {
}
}
// extractTags is now replaced by extractTagsFromEvent from nostrTagSystem
// This function is kept for backward compatibility but should be migrated
// Currently unused - kept for potential future migration
function _unusedExtractTags(_event: Event) {
// This function is intentionally unused - kept for backward compatibility
// If needed in the future, uncomment and implement using _event parameter
return null
}
function getPreviewContent(content: string, previewTag?: string) {
const lines = content.split('\n')