From 01894b62ca4b2dcce2434bb63947ce4cf40aa3ef Mon Sep 17 00:00:00 2001 From: eledobleefe Date: Fri, 9 Jan 2026 13:06:57 +0100 Subject: [PATCH] Fix error in properties types --- packages/grafana-runtime/src/analytics/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-runtime/src/analytics/utils.ts b/packages/grafana-runtime/src/analytics/utils.ts index a6931928c5a..a5363420e74 100644 --- a/packages/grafana-runtime/src/analytics/utils.ts +++ b/packages/grafana-runtime/src/analytics/utils.ts @@ -43,7 +43,7 @@ export const reportPageview = () => { * * @public */ -export const reportInteraction = (interactionName: string, properties?: object) => { +export const reportInteraction = (interactionName: string, properties?: Record) => { // get static reporting context and append it to properties if (config.reportingStaticContext && config.reportingStaticContext instanceof Object) { properties = { ...properties, ...config.reportingStaticContext };