Merge branch 'develop' into add-eslint

This commit is contained in:
Danel Kungla
2025-09-19 17:00:18 +03:00
27 changed files with 523 additions and 502 deletions

View File

@@ -4,6 +4,9 @@ const noop = (event: string) => {
// do nothing - this is to prevent errors when the analytics service is not initialized
return async (...args: unknown[]) => {
if (typeof window !== 'undefined') {
return;
}
console.debug(
`Noop analytics service called with event: ${event}`,
...args.filter(Boolean),