Browse Source

test event to regular event

Alek Petuskey 9 months ago
parent
commit
07f9844cb0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      reflex/utils/telemetry.py

+ 1 - 1
reflex/utils/telemetry.py

@@ -126,7 +126,7 @@ def compile_callback(f, start_time):
         # Force background compile errors to print eagerly
         f.result()
     finally:
-        send("test-compile", duration=time.perf_counter() - start_time)
+        send("compile", duration=time.perf_counter() - start_time)
 
 
 def _prepare_event(event: str, **kwargs) -> dict: