Make event name casing consistent with other event names

This commit is contained in:
Joseph T Lyons 2022-11-01 23:19:55 -04:00
parent dc657a647e
commit aafc3a9584

View File

@ -265,8 +265,8 @@ impl Telemetry {
pub fn report_start_app(self: &Arc<Self>, is_first_time_start: bool) {
self.report_event(
"Start App",
json!({ "is_first_time_start": is_first_time_start }),
"start app",
json!({ "First Time Open": is_first_time_start }),
)
}