diff --git a/plugins/web/opentelemetry-instrumentation-user-interaction/src/instrumentation.ts b/plugins/web/opentelemetry-instrumentation-user-interaction/src/instrumentation.ts index 0b59b4bfbb..1a12953fc4 100644 --- a/plugins/web/opentelemetry-instrumentation-user-interaction/src/instrumentation.ts +++ b/plugins/web/opentelemetry-instrumentation-user-interaction/src/instrumentation.ts @@ -109,11 +109,12 @@ export class UserInteractionInstrumentation extends InstrumentationBase * Creates a new span * @param element * @param eventName + * @param parentSpan */ private _createSpan( element: EventTarget | null | undefined, eventName: EventName, - parentSpan?: api.Span | undefined + parentSpan?: api.Span ): api.Span | undefined { if (!(element instanceof HTMLElement)) { return undefined;