bugfixes/fix-cursor-on-production #7

Merged
roberto merged 2 commits from bugfixes/fix-cursor-on-production into main 2026-06-03 23:54:44 +02:00
Showing only changes of commit 2f2b7866c6 - Show all commits

View File

@@ -179,7 +179,8 @@
} }
const visitorKey = 'cv_visitor_id'; const visitorKey = 'cv_visitor_id';
const createVisitorId = () => window.crypto?.randomUUID?.() ?? `${Date.now()}-${Math.random().toString(36).slice(2)}`; const createVisitorId = () => window.crypto?.randomUUID?.() ??
`${Date.now()}-${Math.random().toString(36).slice(2)}`;
let visitorId = createVisitorId(); let visitorId = createVisitorId();
try { try {