Skip to content

Commit 75f2f7c

Browse files
committed
fix: any types
1 parent 5dbe7ff commit 75f2f7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/nodeDefOrderingUtil.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export function sortWidgetValuesByInputOrder(
7171
}
7272

7373
// Create a map of widget name to value
74-
const valueMap = new Map<string, any>()
74+
const valueMap = new Map<string, TWidgetValue>()
7575
currentWidgetOrder.forEach((name, index) => {
7676
if (index < widgetValues.length) {
7777
valueMap.set(name, widgetValues[index])

0 commit comments

Comments
 (0)