add 'filter' property to CallBlock to prepare to filter suggestions on output type

This commit is contained in:
Joeri Exelmans 2025-05-14 10:36:49 +02:00
parent 0a8d430d3a
commit d3138e6617
2 changed files with 7 additions and 5 deletions

View file

@ -151,6 +151,7 @@ export function Editor({state, setState, onCancel, filter}: EditorProps) {
return <CallBlock
state={state}
setState={setState as (callback:(p:CallBlockState)=>EditorState)=>void}
filter={filter}
/>;
case "let":
return <LetInBlock