Skip to content

Commit

Permalink
fix: just log tag so we have something to inspect (#1417)
Browse files Browse the repository at this point in the history
  • Loading branch information
tyleroooo authored Jan 8, 2025
1 parent 46c2ffe commit 9511890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/useAnalytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const useAnalytics = () => {
// AnalyticsUserProperty.Version
useEffect(() => {
if (latestTag !== undefined) {
identify(AnalyticsUserProperties.Version(latestTag.split(`release/v`).at(-1)));
identify(AnalyticsUserProperties.Version(latestTag));
}
}, [latestTag]);

Expand Down

0 comments on commit 9511890

Please sign in to comment.