refactor: drop redundant Live Log photo/voice Plausible events

Live-journal uploads are tracked only via Photo Uploaded and Voice Memo Uploaded with context live_log.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-03 15:40:22 +02:00
parent 7bc3c25ba4
commit b7a9df6ae0
4 changed files with 3 additions and 12 deletions
-3
View File
@@ -66,9 +66,6 @@ export async function saveEntryVoiceMemo(options: {
})
trackPlausibleEvent(PlausibleEvents.VOICE_MEMO_UPLOADED, { context: analyticsContext })
if (analyticsContext === 'live_log') {
trackPlausibleEvent(PlausibleEvents.LIVE_LOG_VOICE_UPLOADED)
}
syncLogbook(logbookId).catch((err) => console.warn('Background sync failed:', err))
return voiceId
}