fix suggestion order

This commit is contained in:
Joeri Exelmans 2025-05-14 10:29:07 +02:00
parent 18e28fe8b0
commit 0a8d430d3a

View file

@ -72,7 +72,7 @@ export function CallBlock({ state, setState }: CallBlockProps) {
function filterFnInputs(fn: ResolvedType, input: ResolvedType) { function filterFnInputs(fn: ResolvedType, input: ResolvedType) {
const resolved = evalCallBlock(fn, input); const resolved = evalCallBlock(fn, input);
return (resolved && !(resolved instanceof Error)); return (resolved && !(resolved instanceof DeepError));
} }
function FunctionHeader({ fn, setFn, input, onFnCancel }) { function FunctionHeader({ fn, setFn, input, onFnCancel }) {