From b0b23783bad4bf07425246bf298ac15924ebef47 Mon Sep 17 00:00:00 2001 From: bennykok Date: Tue, 30 Jan 2024 10:54:07 +0800 Subject: [PATCH] fix: type --- web/src/components/custom-form/SnapshotPickerView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/custom-form/SnapshotPickerView.tsx b/web/src/components/custom-form/SnapshotPickerView.tsx index adcc201..4c75ac9 100644 --- a/web/src/components/custom-form/SnapshotPickerView.tsx +++ b/web/src/components/custom-form/SnapshotPickerView.tsx @@ -102,7 +102,7 @@ export function SnapshotPickerView({ {field.value && (
{Object.entries(field.value.git_custom_nodes).map( - ([key, item], index) => ( + ([key, item]: [string, any], index) => (