removed unused values

This commit is contained in:
Adam Gough
2025-05-30 10:47:02 -07:00
parent ddac090485
commit 222f97f097

View File

@@ -153,9 +153,7 @@ function storeApiKeyValue(
export function useSubBlockValue<T = any>(
blockId: string,
subBlockId: string,
triggerWorkflowUpdate = false,
isPreview = false,
directValue?: T
triggerWorkflowUpdate = false
): readonly [T | null, (value: T) => void] {
const blockType = useWorkflowStore(
useCallback((state) => state.blocks?.[blockId]?.type, [blockId])