From 504726b0cc02c7c733300e6b81ee911e4412a43e Mon Sep 17 00:00:00 2001 From: Igor Date: Fri, 30 Jan 2026 00:07:08 -0300 Subject: [PATCH] fix: make REPL errors non-silent Closes #2283 --- src/dap/errors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dap/errors.ts b/src/dap/errors.ts index d98760bdb..00cc8cead 100644 --- a/src/dap/errors.ts +++ b/src/dap/errors.ts @@ -153,7 +153,7 @@ export const invalidConcurrentProfile = () => ErrorCodes.InvalidConcurrentProfile, ); -export const replError = (message: string) => createSilentError(message, ErrorCodes.ReplError); +export const replError = (message: string) => createUserError(message, ErrorCodes.ReplError); export const browserNotFound = ( browserType: string,