(tip: Tip)
| 46 | } |
| 47 | |
| 48 | export function recordShownTip(tip: Tip): void { |
| 49 | // Record in history |
| 50 | recordTipShown(tip.id) |
| 51 | |
| 52 | // Log event for analytics |
| 53 | logEvent('tengu_tip_shown', { |
| 54 | tipIdLength: |
| 55 | tip.id as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS, |
| 56 | cooldownSessions: tip.cooldownSessions, |
| 57 | }) |
| 58 | } |
| 59 |
no test coverage detected