test: remove any from SubgraphWidgetPromotion.test.ts

- Replace widgetValue: any with unknown in createNodeWithWidget helper
This commit is contained in:
Johnpaul
2026-01-21 12:48:07 +01:00
parent b7f2359097
commit e340f028f0

View File

@@ -18,7 +18,7 @@ import {
function createNodeWithWidget(
title: string,
widgetType: TWidgetType = 'number',
widgetValue: any = 42,
widgetValue: unknown = 42,
slotType: ISlotType = 'number',
tooltip?: string
) {