From 0a8d430d3a6f7c4a2b4cbe6f72353c1b41e8706c Mon Sep 17 00:00:00 2001 From: Joeri Exelmans Date: Wed, 14 May 2025 10:29:07 +0200 Subject: [PATCH] fix suggestion order --- src/CallBlock.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CallBlock.tsx b/src/CallBlock.tsx index 2f7e75c..5ddd789 100644 --- a/src/CallBlock.tsx +++ b/src/CallBlock.tsx @@ -72,7 +72,7 @@ export function CallBlock({ state, setState }: CallBlockProps) { function filterFnInputs(fn: ResolvedType, input: ResolvedType) { const resolved = evalCallBlock(fn, input); - return (resolved && !(resolved instanceof Error)); + return (resolved && !(resolved instanceof DeepError)); } function FunctionHeader({ fn, setFn, input, onFnCancel }) {